SunFS.glsl 145 B

12345678
  1. uniform sampler2D u_texture;
  2. varying vec2 v_textureCoordinates;
  3. void main()
  4. {
  5. gl_FragColor = texture2D(u_texture, v_textureCoordinates);
  6. }