mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-12-01 04:03:27 -05: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);
|
|
} |