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);
}

6
res/shaders/vertex.glsl Normal file
View file

@ -0,0 +1,6 @@
#version 420 core
layout (location = 0) in vec3 aPos;
void main() {
gl_Position = vec4(aPos.x, aPos.y, aPos.z, 1.0);
}