mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-30 17:49:57 -06: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);
|
|
} |