initial commit.

This commit is contained in:
siriusfox 2022-07-02 17:30:47 -07:00
commit c74c452362
17 changed files with 4983 additions and 0 deletions

View file

@ -0,0 +1,6 @@
#version 420 core
out vec4 FragColor;
void main() {
FragColor = vec4(1.0f, 0.5f, 0.2f, 1.0f);
}