Began work on post processing

This commit is contained in:
mcrcortex
2024-01-30 20:55:46 +10:00
parent 80bd0d7c67
commit a3f043a577
16 changed files with 224 additions and 123 deletions

View File

@@ -0,0 +1,6 @@
#version 330 core
out vec4 colour;
in vec2 UV;
void main() {
colour = vec4(1,0,1,1);
}