Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.
CloseFor some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.
CloseSubmit a renderRequest.
This triggers a pipeline render determined by the RequestData type.
Use ScriptableRenderer.SupportsRenderRequest to check if the active RenderPipeline supports this RequestData type.
The UniversalRenderPipeline supports:
The HDRenderPipeline supports ScriptableRenderer.StandardRequest, which renders a single HDRP camera without Arbitrary Output Variables (AOVs) and outputs the result to the given target. It uses a separate camera history from the render loop, to ensure temporal effects are consistent.
Refer to Render requests for more information about render requests in scriptable render pipelines (SRPs).
Additional resources: RenderPipeline.SupportsRenderRequest, RenderPipeline.StandardRequest.