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
|
|
|
|
out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(1.0f, 1.0f, 1.0f, 1.0f);
|
|
}
|