Improved camera, added new example

This commit is contained in:
Robert 2021-01-24 03:31:28 +01:00
parent 13e924538c
commit 5c28e2fb27
14 changed files with 335 additions and 10106 deletions

View file

@ -1,14 +0,0 @@
#version 330 core
layout (location = 0) in vec3 aPos;
out vec4 oCol;
uniform mat4 model;
uniform mat4 view;
uniform mat4 projection;
void main()
{
oCol = vec4(0.5, 0.5, 0.5, 1.0);
gl_Position = projection * view * model * vec4(aPos, 1.0);
}