mirror of
https://github.com/Ed94/DuctTaped_GL.git
synced 2024-11-10 04:24:52 -08:00
13 lines
188 B
GLSL
13 lines
188 B
GLSL
#version 330 core
|
|
|
|
|
|
|
|
layout (location = 0) in vec3 vertexPosition_modelSpace;
|
|
|
|
|
|
|
|
void main()
|
|
{
|
|
gl_Position.xyz = vertexPosition_modelSpace;
|
|
gl_Position.w = 1.0 ;
|
|
} |