added all project files

This commit is contained in:
Hannes
2018-03-27 20:27:54 +02:00
parent 528797d9de
commit 2fffd4b7c4
53 changed files with 2064 additions and 0 deletions

20
shaders/object.vs.glsl Normal file
View File

@@ -0,0 +1,20 @@
#version 330
layout(location = 0) in vec3 position;
layout(location = 1) in vec2 texturePos;
layout(location = 2) in vec3 normalVec;
out vec2 fragTexCoord;
out vec3 fragNormal;
out vec3 fragPos;
uniform mat4 ModelMatrix;
uniform mat4 CameraMatrix;
void main() {
gl_Position = CameraMatrix * ModelMatrix * vec4(position, 1.0);
fragTexCoord = texturePos;
fragNormal = normalVec;
fragPos = vec3(ModelMatrix * vec4(position, 1));
}