Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


GraphicsBuffer.IndirectDrawIndexedArgs

Defines the data layout for indexed indirect render calls.
Read time 1 minuteLast updated 5 days ago

Definition

  • Type: Struct
  • Namespace: UnityEngine
  • Assembly: UnityEngine.CoreModule
public struct GraphicsBuffer.IndirectDrawIndexedArgs

Remarks

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

Static Fields

Value

Description

sizeThe size of the struct in bytes.

Properties

Property

Description

baseVertexIndexThe index to add to values fetched from the index buffer.
indexCountPerInstanceThe number of vertex indices per instance.
instanceCountThe number of instances to render.
startIndexThe first index to use in the index buffer of the rendering call.
startInstanceThe first instance to render.