mirror of
https://github.com/MaSzyna-EU07/maszyna.git
synced 2026-03-22 15:05:03 +01:00
7 lines
112 B
GLSL
7 lines
112 B
GLSL
layout(location = 0) in vec3 v_vert;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(v_vert.xy * 2.0f - 1.0f, 0.5f, 1.0f);
|
|
}
|