mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 15:28:32 +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);
|
||
|
}
|