Table of Contents

Struct GraphicsResourceAllocator.QueryPoolDescription

Namespace
Stride.Graphics
Assembly
Stride.Graphics.dll

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

QueryType QueryType

The type of the pooled GPU queries.

QueryCount int

The number of queries in the pool.

Properties

QueryCount

The number of queries in the pool.

public int QueryCount { readonly get; set; }

Property Value

int

QueryType

The type of the pooled GPU queries.

public QueryType QueryType { readonly get; set; }

Property Value

QueryType