We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eb2c257 commit 74d87f6Copy full SHA for 74d87f6
app/src/main/res/raw/voronoi_buf_a.fsh
@@ -25,7 +25,7 @@ vec4 GenerateSeed (in vec2 fragCoord)
25
float dR = grayScale(texture2D( iChannel0, uv + dataStep.xz ));
26
float dU = grayScale(texture2D( iChannel0, uv - dataStep.zy ));
27
float dD = grayScale(texture2D( iChannel0, uv + dataStep.zy ));
28
- float w = float( d*0.999 > max(max(dL, dR), max(dU, dD)) );
+ float w = float( d*0.99 > max(max(dL, dR), max(dU, dD)) );
29
30
w = max(w, texture2D( iChannel1, uv ).w*.9); // get some from previous frame
31
0 commit comments