gedeng/Shader/depth-debug.vs

14 lines
194 B
Plaintext
Raw Normal View History

#version 430
layout (location = 0) in vec3 aPos;
layout (location = 1) in vec2 aTexCoords;
out vec2 TexCoords;
void main()
{
TexCoords = aTexCoords;
gl_Position = vec4(aPos, 1.0);
}