mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-06-30 10:46:25 +02:00
9 lines
No EOL
163 B
GLSL
9 lines
No EOL
163 B
GLSL
#version 450 core
|
|
|
|
layout (location = 0) in vec4 clear_colour;
|
|
layout (location = 0) out uvec4 colour;
|
|
|
|
void main()
|
|
{
|
|
colour = floatBitsToUint(clear_colour);
|
|
} |