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