mirror of
https://github.com/RPCS3/glslang.git
synced 2024-12-03 00:28:28 +00:00
13 lines
129 B
GLSL
13 lines
129 B
GLSL
|
|
float GetEntitySelectClip()
|
|
{
|
|
return 1.0f;
|
|
}
|
|
|
|
float4 main() : SV_TARGET
|
|
{
|
|
clip(GetEntitySelectClip());
|
|
|
|
return 0;
|
|
}
|