11 lines
203 B
Plaintext
11 lines
203 B
Plaintext
|
#version 440 core
|
||
|
layout (location = 0) in vec2 aPos;
|
||
|
layout (location = 1) in vec2 aTexCoords;
|
||
|
|
||
|
|
||
|
out vec2 aTexCoords;
|
||
|
|
||
|
void main(){
|
||
|
gl_Position = vec4(aPos.xy , 0.0 ,1.0);
|
||
|
aTexCoords = aTexCoords;
|
||
|
}
|