Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #version 330
- layout (location = 0) in vec3 position;
- layout (location = 1) in vec2 uv;
- out vec2 coord;
- void main()
- {
- coord = uv;
- gl_Position = vec4(position, 1.0);
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement