Refactor in C++

This commit is contained in:
Phireh 2023-10-15 18:28:20 +02:00
commit abdd19f5e5
445 changed files with 68766 additions and 36566 deletions

7
shaders/hex.frag Normal file
View file

@ -0,0 +1,7 @@
#version 330 core
out vec4 final_color;
uniform vec4 hex_color;
void main()
{
final_color = hex_color;
}