857f675f35
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14989 178a84e3-b1eb-0310-8ba1-8eac791a3b58
7 lines
131 B
GLSL
7 lines
131 B
GLSL
#version 130
|
|
uniform mat4 ModelViewProjectionMatrix;
|
|
|
|
void main() {
|
|
gl_Position = (ModelViewProjectionMatrix * gl_Vertex).xyww;
|
|
}
|