Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #version 120
- uniform float time; // passed in by ShaderHelper
- uniform sampler2D tex; // passed in by callback
- uniform vec3 color;
- void main() {
- gl_FragColor = texture2D(tex, gl_TexCoord[0]) * vec4(color, 1);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement