11 lines
178 B
GLSL
11 lines
178 B
GLSL
#version 460 core
|
|
|
|
layout (location = 0) in vec3 aPos;
|
|
layout (location = 1) in vec2 aTex;
|
|
out vec2 texCoord;
|
|
|
|
void main(){
|
|
gl_Position = vec4(aPos, 1.0);
|
|
texCoord = aTex;
|
|
}
|