mirror of
https://github.com/libretro/RetroArch
synced 2025-02-15 09:40:11 +00:00
12 lines
222 B
GLSL
12 lines
222 B
GLSL
#version 450
|
|
#extension GL_EXT_demote_to_helper_invocation : require
|
|
|
|
layout(location = 0) out float FragColor;
|
|
|
|
void main()
|
|
{
|
|
FragColor = float(gl_HelperInvocation);
|
|
demote;
|
|
FragColor = float(helperInvocationEXT());
|
|
}
|