1
2float GetEntitySelectClip()
3{
4    return 1.0f;
5}
6
7float4 main() : SV_TARGET
8{
9    clip(GetEntitySelectClip());
10
11    return 0;
12}
13