Version: 2022.2
LanguageEnglish
  • C#

RenderPipeline.SubmitRenderRequest

Suggest a change

Success!

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.

Close

Submission failed

For 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.

Close

Cancel

Declaration

public static void SubmitRenderRequest(Camera camera, RequestData data);

Description

Submit 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:

  • ScriptableRenderer.StandardRequest: this request type renders a full URP camera stack and outputs the result to the given target. Can only be called on Base Cameras.
  • UniversalRenderPipeline.SingleCameraRequest: this request type renders a single URP camera and outputs the result to the given target.

The HDRenderPipeline supports:

None.

See Also: RenderPipeline.SupportsRenderRequest, RenderPipeline.StandardRequest.