16
0
mirror of https://github.com/MaSzyna-EU07/maszyna.git synced 2026-07-18 00:49:19 +02:00
Files
maszyna/shaders/hiddenarea.vert
2020-11-18 22:18:28 +01:00

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);
}