stk-code_catmod/data/shaders/pass.vert

10 lines
149 B
GLSL

// Passthrough shader for drawQuad()
#version 330 compatibility
out vec2 uv;
void main() {
uv = gl_MultiTexCoord0.xy;
gl_Position = gl_Vertex;
}