yupplemayham/Resources/shaders/GL_bubble.vert
2024-06-21 16:59:06 -04:00

13 lines
No EOL
211 B
GLSL

#version 330 core
layout (location = 0) in vec3 aPos;
layout (location = 1) in vec2 aTexCoord;
out vec2 texCoord;
uniform mat4 MVP;
void main()
{
texCoord = aTexCoord;
gl_Position = MVP * vec4(aPos, 1.0);
}