Table of Contents

Struct DescriptorTypeCount

Namespace
Stride.Graphics
Assembly
Stride.Graphics.dll

Describes how many Descriptor of a specific type will need to be allocated in a DescriptorPool.

public readonly record struct DescriptorTypeCount : IEquatable<DescriptorTypeCount>
Implements
Inherited Members
Extension Methods

Constructors

DescriptorTypeCount(EffectParameterClass, int)

Describes how many Descriptor of a specific type will need to be allocated in a DescriptorPool.

public DescriptorTypeCount(EffectParameterClass Type, int Count)

Parameters

Type EffectParameterClass

The type of the Descriptors to allocate.

Count int

The number of Descriptors that need to be allocated.

Properties

Count

The number of Descriptors that need to be allocated.

public int Count { get; init; }

Property Value

int

Type

The type of the Descriptors to allocate.

public EffectParameterClass Type { get; init; }

Property Value

EffectParameterClass