2016-03-09 16:39:54 +01:00
|
|
|
#version 450 core
|
|
|
|
layout(location = 0) in vec2 aPos;
|
|
|
|
layout(location = 1) in vec2 aUV;
|
|
|
|
layout(location = 2) in vec4 aColor;
|
|
|
|
|
2024-09-19 11:45:18 +02:00
|
|
|
layout (set = 1, binding = 0) uniform UBO
|
|
|
|
{
|
2016-03-09 16:39:54 +01:00
|
|
|
vec2 uScale;
|
|
|
|
vec2 uTranslate;
|
2024-09-19 11:45:18 +02:00
|
|
|
} ;
|
2016-03-09 16:39:54 +01:00
|
|
|
|
2019-04-03 11:23:54 +02:00
|
|
|
out gl_PerVertex {
|
2016-11-13 03:00:36 +01:00
|
|
|
vec4 gl_Position;
|
|
|
|
};
|
|
|
|
|
2019-04-03 11:23:54 +02:00
|
|
|
layout(location = 0) out struct {
|
2016-03-09 16:39:54 +01:00
|
|
|
vec4 Color;
|
|
|
|
vec2 UV;
|
|
|
|
} Out;
|
|
|
|
|
|
|
|
void main()
|
|
|
|
{
|
|
|
|
Out.Color = aColor;
|
|
|
|
Out.UV = aUV;
|
2024-09-19 11:45:18 +02:00
|
|
|
gl_Position = vec4(aPos * uScale + uTranslate, 0, 1);
|
2016-03-09 16:39:54 +01:00
|
|
|
}
|