12 lines
191 B
HLSL
12 lines
191 B
HLSL
#include "common.hlsli"
|
|
|
|
float4 main(p_shadow I) : SV_Target
|
|
{
|
|
#ifdef USE_AREF
|
|
float4 C = s_base.Sample(smp_linear, I.tc0);
|
|
clip(C.w - def_aref);
|
|
#endif
|
|
|
|
return 0;
|
|
}
|
|
|