mirror of
https://github.com/libretro/RetroArch
synced 2025-02-02 05:54:16 +00:00
10 lines
129 B
GLSL
10 lines
129 B
GLSL
|
#version 450
|
||
|
layout(early_fragment_tests) in;
|
||
|
|
||
|
layout(location = 0) out vec4 FragColor;
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
FragColor = vec4(1.0);
|
||
|
}
|