Files
RT_GPU/shaders/vertex.vert
2024-10-14 23:16:28 +02:00

6 lines
106 B
GLSL

#version 330 core
layout(location = 0) in vec2 vPos;
void main()
{
gl_Position = vec4(vPos, 0.0, 1.0);
};