3D Rendering oh yeaaaahhhhh

This commit is contained in:
Halbear 2026-05-18 22:07:15 +01:00
parent 84020a922b
commit 907afc6577
8 changed files with 119 additions and 23 deletions

View file

@ -1,8 +1,9 @@
#version 450
layout(location = 0) in vec2 inTextCoords;
layout(location = 0) out vec4 outFragColor;
void main()
{
outFragColor = vec4(1, 0, 0, 1);
outFragColor = vec4(inTextCoords.x, inTextCoords.y, 0, 1);
}