10 lines
149 B
GLSL
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;
|
|
}
|