First Commit
This commit is contained in:
commit
5ccf998834
34 changed files with 1608 additions and 0 deletions
10
VBO/res/shaders/skybox.vert
Normal file
10
VBO/res/shaders/skybox.vert
Normal file
|
@ -0,0 +1,10 @@
|
|||
#version 330
|
||||
|
||||
layout (location = 0) in vec3 in_position;
|
||||
|
||||
out vec3 position;
|
||||
|
||||
void main(void){
|
||||
position = gl_Vertex.xyz;
|
||||
gl_Position = ftransform();
|
||||
}
|
Reference in a new issue