Version: 2021.3
LanguageEnglish
  • C#

IndirectDrawArgs

struct in UnityEngine

/

Implemented in:UnityEngine.CoreModule

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

Description

Defines the data layout for non-indexed indirect render calls.

To setup GraphicsBuffer for non-indexed indirect rendering, use this struct to define the data layout. The layout can change between platforms, so for improved portability, use this struct instead of defining the data as raw ints.

Additional resources: Graphics.RenderPrimitivesIndirect.

Static Properties

sizeThe size of the struct in bytes.

Properties

instanceCountThe number of instances to render.
startInstanceThe first instance to render.
startVertexThe first vertex to render.
vertexCountPerInstanceThe number of vertices per instance.