Added move to dither

This commit is contained in:
antopilo
2021-08-31 19:10:15 -04:00
parent 9d54748a04
commit 1b916993e0

View File

@@ -22,7 +22,7 @@ out vec4 FragColor;
void main()
{
if (mod(gl_FragCoord.x + gl_FragCoord.y, 4.0) < 2.0)
if (mod(gl_FragCoord.x + gl_FragCoord.y + (u_Time * 4.0), 4.0) < 2.0)
discard;
vec4 finalColor = u_Color;