summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--basicsuite/graphicaleffects/effect_CustomDissolve.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/basicsuite/graphicaleffects/effect_CustomDissolve.qml b/basicsuite/graphicaleffects/effect_CustomDissolve.qml
index ec1926c..a7c4522 100644
--- a/basicsuite/graphicaleffects/effect_CustomDissolve.qml
+++ b/basicsuite/graphicaleffects/effect_CustomDissolve.qml
@@ -147,7 +147,7 @@ Item {
varying lowp float vOpacity;
// Noise function from: http://stackoverflow.com/questions/4200224/random-noise-functions-for-glsl
- highp float rand(vec2 n) {
+ highp float rand(highp vec2 n) {
return fract(sin(dot(n.xy, vec2(12.9898, 78.233))) * 43758.5453);
}