Table of Contents

Struct IndirectDrawArguments

Namespace
NeoVeldrid
Assembly
NeoVeldrid.dll

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

public struct IndirectDrawArguments
Inherited Members

Fields

FirstInstance

The first instance to draw. Subsequent instances are incrmented by 1.

public uint FirstInstance

Field Value

uint

FirstVertex

The first vertex to draw. Subsequent vertices are incremented by 1.

public uint FirstVertex

Field Value

uint

InstanceCount

The number of instances to draw.

public uint InstanceCount

Field Value

uint

VertexCount

The number of vertices to draw.

public uint VertexCount

Field Value

uint