Guest User

Untitled

a guest
Aug 17th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. #version 110
  2.  
  3. attribute vec2 position;
  4. varying vec2 texcoord;
  5.  
  6. void main() {
  7. gl_Position = vec4(position, 0.0, 1.0);
  8. texcoord = position * vec2(0.5) + vec2(0.5);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment