#[repr(C)]pub struct QueryPoolCreateInfo {
pub s_type: StructureType,
pub p_next: *const c_void,
pub flags: QueryPoolCreateFlags,
pub query_type: QueryType,
pub query_count: u32,
pub pipeline_statistics: QueryPipelineStatisticFlags,
}Expand description
VkQueryPoolCreateInfo
Provided by VK_BASE_VERSION_1_0.
§Extended By
QueryPoolPerformanceCreateInfoKHRQueryPoolPerformanceQueryCreateInfoINTELQueryPoolVideoEncodeFeedbackCreateInfoKHRVideoDecodeAV1ProfileInfoKHRVideoDecodeH264ProfileInfoKHRVideoDecodeH265ProfileInfoKHRVideoDecodeUsageInfoKHRVideoDecodeVP9ProfileInfoKHRVideoEncodeAV1ProfileInfoKHRVideoEncodeH264ProfileInfoKHRVideoEncodeH265ProfileInfoKHRVideoEncodeUsageInfoKHRVideoProfileInfoKHR
Fields§
§s_type: StructureTypeMust be VK_STRUCTURE_TYPE_QUERY_POOL_CREATE_INFO.
p_next: *const c_voidOptional, may be null.
flags: QueryPoolCreateFlags§query_type: QueryType§query_count: u32§pipeline_statistics: QueryPipelineStatisticFlagsImplementations§
Source§impl QueryPoolCreateInfo
impl QueryPoolCreateInfo
Sourcepub fn builder<'a>() -> QueryPoolCreateInfoBuilder<'a>
pub fn builder<'a>() -> QueryPoolCreateInfoBuilder<'a>
Start building this struct; s_type is already set to the correct variant.
Trait Implementations§
Source§impl Clone for QueryPoolCreateInfo
impl Clone for QueryPoolCreateInfo
Source§fn clone(&self) -> QueryPoolCreateInfo
fn clone(&self) -> QueryPoolCreateInfo
Returns a duplicate 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 moreSource§impl Debug for QueryPoolCreateInfo
impl Debug for QueryPoolCreateInfo
Source§impl Default for QueryPoolCreateInfo
impl Default for QueryPoolCreateInfo
impl Copy for QueryPoolCreateInfo
Auto Trait Implementations§
impl Freeze for QueryPoolCreateInfo
impl RefUnwindSafe for QueryPoolCreateInfo
impl !Send for QueryPoolCreateInfo
impl !Sync for QueryPoolCreateInfo
impl Unpin for QueryPoolCreateInfo
impl UnsafeUnpin for QueryPoolCreateInfo
impl UnwindSafe for QueryPoolCreateInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more