Mise à jour du dépôt en fonction du .gitignore
This commit is contained in:
parent
1f0f033fad
commit
4a59748e67
224 changed files with 6785 additions and 0 deletions
14
Map3DRendering/Shaders/Gizmo/axes.vert
Normal file
14
Map3DRendering/Shaders/Gizmo/axes.vert
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
#version 330 core
|
||||
|
||||
layout (location = 0) in vec3 aPosition;
|
||||
layout (location = 1) in vec3 aColor;
|
||||
|
||||
uniform mat4 view;
|
||||
uniform mat4 projection;
|
||||
|
||||
out vec3 vertexColor;
|
||||
|
||||
void main() {
|
||||
gl_Position = projection * view * vec4(aPosition, 1.0);
|
||||
vertexColor = aColor;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue