Nigel
06b979dfaa
Added a light source removed texturing removed drawing multiple instances of the same cube
15 lines
201 B
GLSL
15 lines
201 B
GLSL
#version 460 core
|
|
layout (location=0) in vec3 aPos;
|
|
|
|
|
|
uniform mat4 model;
|
|
uniform mat4 view;
|
|
uniform mat4 projection;
|
|
|
|
|
|
void main(){
|
|
|
|
gl_Position = projection * view * model * vec4(aPos , 1.0);
|
|
|
|
}
|