mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-05-14 01:17:43 +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;
|
|
} |