636f6412ab
Still not enabled. git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14831 178a84e3-b1eb-0310-8ba1-8eac791a3b58
10 lines
154 B
GLSL
10 lines
154 B
GLSL
#version 130
|
|
uniform mat4 matrix;
|
|
in vec3 position;
|
|
|
|
void main(void)
|
|
{
|
|
gl_PointSize = 50.;
|
|
gl_Position = matrix * vec4(position, 1.0);
|
|
}
|