Total

by Mojito

Info file

Tags

Credits

Last edited on 27 Dec 2018 by tomaes. See all edits

1 comment

tomaes - 18:14 25 December 2018 #

Like me, you might need to fix strobo.fs in order for it to run.

a = vec3( texture2D(colortex, gl_TexCoord[0].xy).r, 0.0, 0.0 );
b = vec3( 0.0, texture2D(colortex, gl_TexCoord[0].xy).g, 0.0 );
c = vec3( 0.0, 0.0, texture2D(colortex, gl_TexCoord[0].xy).b );

(yes, I know, the less anal and more concise version is to leave the 0.0s out altogether :))