stk-code_catmod/data/shaders/pass.vert

12 lines
168 B
GLSL
Raw Normal View History

// Passthrough shader for drawQuad()
#version 140
2014-03-09 16:06:02 -04:00
in vec3 Position;
in vec2 Texcoord;
out vec2 uv;
void main() {
2014-03-09 16:06:02 -04:00
uv = Texcoord;
gl_Position = vec4(Position, 1.);
}