Version: 2020.3
ShaderLab command: GrabPass
ShaderLab command: ZTest

ShaderLab command: ZClip

Sets the GPU’s depth clip mode, which determines how the GPU handles fragments that are outside of the near and far planes.

Setting the GPU’s depth clip mode to clamp can be useful for stencil shadow rendering; it means that there is no need for special case handling when the geometry goes beyond the far plane, which results in fewer rendering operations. However, it can result in incorrect Z ordering.

렌더 파이프라인 호환성

Feature name 빌트인 렌더 파이프라인 유니버설 렌더 파이프라인(URP) 고해상도 렌더 파이프라인(HDRP) Custom SRP
ZClip 지원 지원 지원 지원

사용법

This command makes a change to the render state. Use it in a Pass block to set the render state for that Pass, or use it in a SubShader block to set the render state for all Passes in that SubShader.

Signature Example syntax 기능
ZClip [enabled] ZClip True Sets the depth clip mode.

Valid parameter values

파라미터 기능
enabled True Sets the depth clip mode to clip.

This is the default setting.
False Sets the depth clip mode to clamp.

Fragments closer than the near plane are at the near plane exactly, and fragments further away than the far plane are at the far plane exactly.

예제

This example code demonstrates the syntax for using this command in a Pass block.

Shader "Examples/CommandExample"
{
    SubShader
    {
         // The rest of the code that defines the SubShader goes here.

        Pass
        {    
              // Sets the GPU's depth clip mode to clamp for this Pass
              // You would typically do this if you are rendering stencil shadows
              ZClip False
            
              // The rest of the code that defines the Pass goes here.
        }
    }
}

This example code demonstrates the syntax for using this command in a SubShader block.

Shader "Examples/CommandExample"
{
    SubShader
    {
         // Sets the GPU's depth clip mode to clamp for this SubShader
         // You would typically do this if you are rendering stencil shadows
         ZClip False

         // The rest of the code that defines the SubShader goes here.        

        Pass
        {    
              // The rest of the code that defines the Pass goes here.
        }
    }
}
ShaderLab command: GrabPass
ShaderLab command: ZTest
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961