mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 09:40:11 +00:00
10 lines
125 B
GLSL
10 lines
125 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 f;
|
|
layout(location = 0) in vec4 f2;
|
|
|
|
void main()
|
|
{
|
|
gl_Position = modf(f2, f);
|
|
}
|