mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-31 22:47:18 +00:00
9 lines
163 B
GLSL
9 lines
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);
|
|
} |