Struct DescriptorTypeCount
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
TypeEffectParameterClassThe type of the Descriptors to allocate.
CountintThe 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
Type
The type of the Descriptors to allocate.
public EffectParameterClass Type { get; init; }