mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2026-04-23 10:21:57 +00:00
9 lines
No EOL
162 B
GLSL
9 lines
No EOL
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);
|
|
} |