mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
9 lines
169 B
GLSL
9 lines
169 B
GLSL
#version 450
|
|
#extension GL_EXT_demote_to_helper_invocation : require
|
|
|
|
void main()
|
|
{
|
|
//demote; // FIXME: Not implemented for MSL
|
|
bool helper = helperInvocationEXT();
|
|
}
|