Initial commit

This commit is contained in:
mcrcortex
2023-11-14 08:16:22 +10:00
commit 046a419e4f
89 changed files with 5798 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#version 460 core
layout(location = 0) in flat vec4 colour;
layout(location = 0) out vec4 outColour;
void main() {
//TODO: randomly discard the fragment with respect to the alpha value
outColour = colour;
}