You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
195 B

  1. #ifdef GL_ES
  2. precision mediump float;
  3. #endif
  4. attribute vec4 position;
  5. attribute vec4 texcoord;
  6. varying vec2 V_Texcoord;
  7. void main(){
  8. V_Texcoord = texcoord.xy;
  9. gl_Position = position;
  10. }