diff --git a/app/qml/PreprocessedTerminal.qml b/app/qml/PreprocessedTerminal.qml
index 1ac6088..1e6d2a0 100644
--- a/app/qml/PreprocessedTerminal.qml
+++ b/app/qml/PreprocessedTerminal.qml
@@ -312,7 +312,6 @@ Item{
             blending: false
 
             fragmentShader:
-                "precision highp float;" +
                 "uniform lowp float qt_Opacity;" +
                 "uniform lowp sampler2D txt_source;" +
 
diff --git a/app/qml/ShaderTerminal.qml b/app/qml/ShaderTerminal.qml
index a0c1903..42d7356 100644
--- a/app/qml/ShaderTerminal.qml
+++ b/app/qml/ShaderTerminal.qml
@@ -151,8 +151,6 @@ ShaderEffect {
         }"
 
     fragmentShader: "
-        precision highp float;
-
         uniform sampler2D source;
         uniform highp float qt_Opacity;
         uniform highp float time;
diff --git a/app/qml/frames/utils/TerminalFrame.qml b/app/qml/frames/utils/TerminalFrame.qml
index ae4f084..093b2b5 100644
--- a/app/qml/frames/utils/TerminalFrame.qml
+++ b/app/qml/frames/utils/TerminalFrame.qml
@@ -120,8 +120,6 @@ Item{
         blending: true
 
         fragmentShader: "
-            precision highp float;
-
             uniform highp sampler2D normals;
             uniform highp sampler2D source;
             uniform lowp float screenCurvature;
@@ -183,8 +181,6 @@ Item{
             blending: true
 
             fragmentShader: "
-                precision highp float;
-
                 uniform sampler2D lightMask;
                 uniform sampler2D reflectionSource;
                 uniform lowp float diffuseComponent;