mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-08 16:58:41 +00:00
9 lines
162 B
GLSL
9 lines
162 B
GLSL
|
#version 450 core
|
||
|
|
||
|
layout (location = 0) in vec4 clear_colour;
|
||
|
layout (location = 0) out ivec4 colour;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
colour = floatBitsToInt(clear_colour);
|
||
|
}
|