mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-10 10:08:18 +00:00
10 lines
137 B
GLSL
10 lines
137 B
GLSL
#version 330
|
|
|
|
layout (location = 0) in vec2 inVertex;
|
|
|
|
uniform mat4 Pos;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = Pos * vec4(inVertex, -5.0, 1.0);
|
|
} |