stk-code_catmod/data/shaders/particle.vert
vincentlj 636f6412ab GPUParticles: Use some parameters, and texture, to display particles.
Still not enabled.

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14831 178a84e3-b1eb-0310-8ba1-8eac791a3b58
2013-12-29 19:24:19 +00:00

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);
}