Table of Contents

Struct IndirectDrawIndexedArguments

Namespace
NeoVeldrid
Assembly
NeoVeldrid.dll

A structure describing the format expected by indirect, indexed draw commands contained in an indirect DeviceBuffer.

public struct IndirectDrawIndexedArguments
Inherited Members

Fields

FirstIndex

The value which is used as the start of the indices used for the draw.

public uint FirstIndex

Field Value

uint

FirstInstance

The first instance to draw. Subsequent instances (if InstanceCount > 1) are incremented by 1.

public uint FirstInstance

Field Value

uint

IndexCount

The number of indices to use in the indexed draw.

public uint IndexCount

Field Value

uint

InstanceCount

The number of instances to draw.

public uint InstanceCount

Field Value

uint

VertexOffset

An offset which is added to each vertex element referenced by the index DeviceBuffer.

public int VertexOffset

Field Value

int