mirror of
https://github.com/TheRedShip/RT_GPU.git
synced 2025-09-27 18:48:36 +02:00
6 lines
106 B
GLSL
6 lines
106 B
GLSL
#version 330 core
|
|
layout(location = 0) in vec2 vPos;
|
|
void main()
|
|
{
|
|
gl_Position = vec4(vPos, 0.0, 1.0);
|
|
}; |