mirror of
https://github.com/brammie15/VoxelRenderer.git
synced 2025-12-18 18:49:20 +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);
|
|
}
|