stk-code_catmod/data/shaders/colortexturedquad.vert

26 lines
492 B
GLSL
Raw Normal View History

2018-01-22 10:43:22 +08:00
uniform vec2 center;
uniform vec2 size;
uniform vec2 texcenter;
uniform vec2 texsize;
uniform float rotation;
2018-01-22 10:43:22 +08: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-05-01 09:34:04 +08:00
out vec4 color;
2018-01-22 10:43:22 +08:00
void main()
{
2020-05-01 09:34:04 +08:00
color = Color.zyxw;
2018-01-22 10:43:22 +08:00
uv = Texcoord * texsize + texcenter;
2023-01-08 08:08:35 +08:00
gl_Position = vec4(Position * size + center, 0., 1.);
2018-01-22 10:43:22 +08:00
}