Enum CustomPassInjectionPoint
List all the injection points available for HDRP
Namespace: UnityEngine.Rendering.HighDefinition
Syntax
[GenerateHLSL(PackingRules.Exact, true, false, false, 1, false, false, false, -1, "C:\\temp\\com.unity.render-pipelines.high-definition@13.0\\Packages\\com.unity.render-pipelines.high-definition\\Runtime\\RenderPipeline\\RenderPass\\CustomPass\\CustomPassInjectionPoint.cs")]
public enum CustomPassInjectionPoint
Fields
Name | Description | Value |
---|---|---|
BeforeRendering | Just after HDRP clears the depth buffer. You can write to the depth buffer to make HDRP not render depth-tested opaque GameObjects. |
0 |
BeforeTransparent | At this injection point, you can sample the color pyramid that HDRP generates for rough transparent refraction. |
1 |
BeforePostProcess | This injection point is after HDRP handles post-processesing. At this point, depth is jittered which means you cannot draw depth tested GameObjects without having artifacts. |
2 |
AfterPostProcess | This injection point is before HDRP renders post-processing and custom post-processing effects. |
3 |
BeforePreRefraction | At this injection point, you can render any transparent GameObject that you want to see in refraction. If you write to buffers at this injection point, they contents end up in the color pyramid that HDRP uses for refraction when it draws transparent GameObjects. |
4 |
AfterOpaqueDepthAndNormal | At this point, you can modify the normal, roughness, and depth buffer. If you write to these buffers at this injection point, HDRP takes it into account in the lighting and the depth pyramid. |
5 |