i hate opengl, if you can't already tell

This commit is contained in:
minjaesong
2021-12-11 22:31:58 +09:00
parent 53e847d66c
commit f90a0fc4e2
2 changed files with 6 additions and 6 deletions

View File

@@ -29,6 +29,6 @@ void main() {
vec4 selvec = vec4(0.0, 0.0, 0.0, (alpha > bayerThreshold) ? 1.0 : 0.0);
// gl_FragColor = inColor * boolean.yyyx + selvec;
gl_FragColor = inColor;
gl_FragColor = inColor * boolean.yyyx + selvec;
// gl_FragColor = inColor;
}