Guest User

Untitled

a guest
Jun 18th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // Vertex Shader – file "minimal.vert"
  2.  
  3. #version 130
  4.  
  5. in vec3 in_Position;
  6. in vec3 in_Color;
  7. out vec3 ex_Color;
  8.  
  9. void main(void)
  10. {
  11. ex_Color = in_Color;
  12. gl_Position = vec4(in_Position, 1.0);
  13. }
Add Comment
Please, Sign In to add comment