10 lines
176 B
GLSL
10 lines
176 B
GLSL
|
#version 330
|
||
|
|
||
|
layout(location = 0) in vec2 position;
|
||
|
layout(location = 1) in vec2 tex;
|
||
|
out vec2 textex;
|
||
|
|
||
|
void main() {
|
||
|
textex = tex;
|
||
|
gl_Position = vec4(position, 0.0, 1.0);
|
||
|
}
|