mirror of
https://github.com/brammie15/VoxelRenderer.git
synced 2025-12-16 18:01:49 +01:00
9 lines
94 B
GLSL
9 lines
94 B
GLSL
#version 400 core
|
|
|
|
in vec3 position;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = vec4(position, 1.0f);
|
|
}
|