Advertisement
Guest User

Untitled

a guest
May 14th, 2017
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #version 300 es
  2.  
  3. precision highp float;
  4.  
  5. layout(location = 0) out vec4 color;
  6.  
  7. in vec4 position;
  8.  
  9. void main()
  10. {
  11.     color = position;
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement