Late init

This commit is contained in:
2022-04-06 20:24:56 +02:00
commit 993ec8fdb4
16 changed files with 20369 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
#version 330 core
out vec4 FragColor;
void main() {
FragColor = vec4(1.0, 1.0, 1.0, 1.0);
}

View File

@@ -0,0 +1,8 @@
#version 330 core
layout (location =0) in vec3 aPos;
uniform mat4 proj;
void main() {
gl_Position = vec4(aPos, 1.0) * proj;
}

BIN
assets/textures/wall.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 251 KiB