blit.frag 161 B

1234567891011
  1. #ifdef GL_ES
  2. precision mediump float;
  3. #endif
  4. uniform sampler2D texture;
  5. varying vec2 uv;
  6. void main() {
  7. gl_FragColor = vec4(texture2D(texture, uv).rgb, 1);
  8. }