Advertisement
Guest User

Untitled

a guest
Jun 13th, 2018
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.19 KB | None | 0 0
  1. precision lowp float;
  2. uniform sampler2D texDiffuse;
  3. varying vec2 tex_uv_fs;
  4.  
  5.  
  6. void main(void)
  7. {
  8.     vec4 finalColor = texture2D(texDiffuse, tex_uv_fs);
  9.     gl_FragColor = finalColor;
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement