2ba340b6cb
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14973 178a84e3-b1eb-0310-8ba1-8eac791a3b58
10 lines
135 B
GLSL
10 lines
135 B
GLSL
// Passthrough shader for drawQuad()
|
|
#version 130
|
|
|
|
out vec2 uv;
|
|
|
|
void main() {
|
|
uv = gl_MultiTexCoord0.xy;
|
|
gl_Position = gl_Vertex;
|
|
}
|