mirror of
https://github.com/libretro/RetroArch
synced 2025-02-16 03:40:12 +00:00
11 lines
120 B
GLSL
11 lines
120 B
GLSL
#version 450
|
|
|
|
layout(location = 0) out vec4 FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = vec4(1.0);
|
|
gl_SampleMask[0] = 0;
|
|
}
|
|
|