mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2026-01-02 07:27:18 +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);
|
|
} |