Show / Hide Table of Contents

Struct IndirectDispatchArguments

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

Inherited Members
System.ValueType.Equals(System.Object)
System.ValueType.GetHashCode()
System.ValueType.ToString()
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetType()
Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
public struct IndirectDispatchArguments

Fields

GroupCountX

The X group count, as if passed to the Dispatch(UInt32, UInt32, UInt32) method.

Declaration
public uint GroupCountX
Field Value
Type Description
System.UInt32

GroupCountY

The Y group count, as if passed to the Dispatch(UInt32, UInt32, UInt32) method.

Declaration
public uint GroupCountY
Field Value
Type Description
System.UInt32

GroupCountZ

The Z group count, as if passed to the Dispatch(UInt32, UInt32, UInt32) method.

Declaration
public uint GroupCountZ
Field Value
Type Description
System.UInt32
Back to top