Struct vulkano::query::QueryPoolCreateInfo
source · pub struct QueryPoolCreateInfo {
pub query_type: QueryType,
pub query_count: u32,
pub _ne: NonExhaustive,
}
Expand description
Parameters to create a new QueryPool
.
Fields§
§query_type: QueryType
The type of query that the pool should be for.
There is no default value.
query_count: u32
The number of queries to create in the pool.
The default value is 0
, which must be overridden.
_ne: NonExhaustive
Implementations§
source§impl QueryPoolCreateInfo
impl QueryPoolCreateInfo
sourcepub fn query_type(query_type: QueryType) -> Self
pub fn query_type(query_type: QueryType) -> Self
Returns a QueryPoolCreateInfo
with the specified query_type
.
Trait Implementations§
source§impl Clone for QueryPoolCreateInfo
impl Clone for QueryPoolCreateInfo
source§fn clone(&self) -> QueryPoolCreateInfo
fn clone(&self) -> QueryPoolCreateInfo
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read more