PassThrough.glsl 151 B

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