Advertisement
Guest User

Untitled

a guest
Jun 14th, 2025
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. #version 460 core
  2. layout (location = 0) in vec3 aPos;
  3.  
  4. uniform mat4 model;
  5.  
  6. void main()
  7. {
  8. gl_Position = model * vec4(aPos, 1.0);
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement