Show / Hide Table of Contents

Enum ResourceLayoutElementOptions

Miscellaneous options for an element in a ResourceLayout.

Namespace: Veldrid
Assembly: cs.temp.dll.dll
Syntax
[Flags]
public enum ResourceLayoutElementOptions

Fields

Name Description
DynamicBinding

Can be applied to a buffer type resource (StructuredBufferReadOnly, StructuredBufferReadWrite, or UniformBuffer), allowing it to be bound with a dynamic offset using SetGraphicsResourceSet(UInt32, ResourceSet, UInt32[]). Offsets specified this way must be a multiple of UniformBufferMinOffsetAlignment or StructuredBufferMinOffsetAlignment.

None

No special options.

Back to top