Struct GraphicsResourceAllocator.QueryPoolDescription
A description of a GPU queries pool.
protected record struct GraphicsResourceAllocator.QueryPoolDescription : IEquatable<GraphicsResourceAllocator.QueryPoolDescription>
- Implements
- Inherited Members
- Extension Methods
Constructors
QueryPoolDescription(QueryType, int)
A description of a GPU queries pool.
public QueryPoolDescription(QueryType QueryType, int QueryCount)
Parameters
QueryTypeQueryTypeThe type of the pooled GPU queries.
QueryCountintThe number of queries in the pool.
Properties
QueryCount
The number of queries in the pool.
public int QueryCount { readonly get; set; }
Property Value
QueryType
The type of the pooled GPU queries.
public QueryType QueryType { readonly get; set; }