CapersProject/Assets/Toon Water URP/Functions/ClipValues.cginc

15 lines
223 B
HLSL
Raw Normal View History

2024-09-02 05:06:21 +00:00
void ClipValues_half(out half2 Out)
{
Out = half2(
UNITY_NEAR_CLIP_VALUE,
UNITY_RAW_FAR_CLIP_VALUE
);
}
void ClipValues_float(out half2 Out)
{
Out = half2(
UNITY_NEAR_CLIP_VALUE,
UNITY_RAW_FAR_CLIP_VALUE
);
}