mirror of
https://github.com/brammie15/VoxelRenderer.git
synced 2025-12-18 02:39:19 +01:00
9 lines
94 B
GLSL
9 lines
94 B
GLSL
#version 430 core
|
|
|
|
out vec4 color;
|
|
|
|
void main()
|
|
{
|
|
color = vec4(1.0f, 1.0f, 1.0f, 1.0f);
|
|
}
|