7bb1e671b2
git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@14916 178a84e3-b1eb-0310-8ba1-8eac791a3b58
11 lines
154 B
GLSL
11 lines
154 B
GLSL
#version 130
|
|
uniform vec2 center;
|
|
uniform vec2 size;
|
|
|
|
in vec2 position;
|
|
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(position * size + center, 0., 1.);
|
|
} |