Skip to content
Snippets Groups Projects
hlsl.clip.frag 129 B
Newer Older

float GetEntitySelectClip()
{
    return 1.0f;
}

float4 main() : SV_TARGET
{
    clip(GetEntitySelectClip());

    return 0;
}