Signed-off-by: Slendi <slendi@socopon.com>
This commit is contained in:
2025-12-17 15:51:38 +02:00
parent 59999f211d
commit a99233fcbe
10 changed files with 280 additions and 119 deletions

View File

@@ -0,0 +1,13 @@
#version 450
void main()
{
vec2 positions[3] = vec2[](
vec2(-1.0, -1.0),
vec2( 3.0, -1.0),
vec2(-1.0, 3.0)
);
gl_Position = vec4(positions[gl_VertexIndex], 0.0, 1.0);
}