stk-code_catmod/data/shaders/colortexturedquad.vert

26 lines
492 B
GLSL
Raw Normal View History

2018-01-21 21:43:22 -05:00
uniform vec2 center;
uniform vec2 size;
uniform vec2 texcenter;
uniform vec2 texsize;
uniform float rotation;
2018-01-21 21:43:22 -05:00
#ifdef Explicit_Attrib_Location_Usable
layout(location=0) in vec2 Position;
layout(location=3) in vec2 Texcoord;
layout(location=2) in vec4 Color;
#else
in vec2 Position;
in vec2 Texcoord;
in vec4 Color;
#endif
out vec2 uv;
2020-04-30 21:34:04 -04:00
out vec4 color;
2018-01-21 21:43:22 -05:00
void main()
{
2020-04-30 21:34:04 -04:00
color = Color.zyxw;
2018-01-21 21:43:22 -05:00
uv = Texcoord * texsize + texcenter;
2023-01-07 19:08:35 -05:00
gl_Position = vec4(Position * size + center, 0., 1.);
2018-01-21 21:43:22 -05:00
}