mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-19 13:36:53 +02:00
9 lines
No EOL
145 B
GLSL
9 lines
No EOL
145 B
GLSL
#version 450 core
|
|
|
|
layout (location = 0) in vec4 clear_colour;
|
|
layout (location = 0) out vec4 colour;
|
|
|
|
void main()
|
|
{
|
|
colour = clear_colour;
|
|
} |