stk-code_catmod/data/shaders/colortexturedquad.vert

25 lines
482 B
GLSL
Raw Normal View History

uniform vec2 center;
uniform vec2 size;
uniform vec2 texcenter;
uniform vec2 texsize;
2014-08-13 14:25:56 -04:00
#if __VERSION__ >= 330
layout(location=0) in vec2 Position;
layout(location=3) in vec2 Texcoord;
layout(location=2) in uvec4 Color;
#else
2014-08-13 14:25:56 -04:00
in vec2 Position;
in vec2 Texcoord;
in uvec4 Color;
#endif
2014-08-13 14:25:56 -04:00
out vec2 uv;
out vec4 col;
void main()
{
2014-08-13 14:25:56 -04:00
col = vec4(Color) / 255.;
uv = Texcoord * texsize + texcenter;
gl_Position = vec4(Position * size + center, 0., 1.);
}