Raster render updates

This commit is contained in:
IlyaShurupov 2024-11-04 22:54:10 +03:00
parent e636394952
commit 60a15fad8b
10 changed files with 121 additions and 39 deletions

View file

@ -0,0 +1,7 @@
#version 330 core
out vec4 FragColor;
void main() {
FragColor = vec4(1, 0, 0, 1.f);
}