This commit is contained in:
Tipe
2025-02-16 03:22:56 +02:00
parent 96a06451d1
commit a6dd0f9d6a
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@@ -1 +1,2 @@
/build
/.git

View File

@@ -10,7 +10,7 @@ void main() {
float r = 1 - x + y;
float g = x + y;
float b = 1.5 - y;
float b = 1. - y;
FragColour = vec4(r, g, b, 1.0f);
}