[][src]Struct bedrock::QueryPipelineStatisticFlags

pub struct QueryPipelineStatisticFlags(pub VkQueryPipelineStatisticFlags);

Bitmask specifying queried pipeline statistics

Methods

impl QueryPipelineStatisticFlags[src]

pub const INPUT_ASSEMBLY_VERTICES: Self[src]

Queries managed by the pool will count the number of vertices processed by the input assembly stage

pub const INPUT_ASSEMBLY_PRIMITIVES: Self[src]

Queries managed by the pool will count the number of primitives processed by the input assembly state

pub const VERTEX_SHADER_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of vertex shader invocations

pub const GEOMETRY_SHADER_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of geometry shader invocations

pub const GEOMETRY_SHADER_PRIMITIVES: Self[src]

Queries managed by the pool will count the number of primitives generated by geometry shader invocations

pub const CLIPPING_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of primitives processed by the Primitive Clipping stage of the pipeline

pub const CLIPPING_PRIMITIVES: Self[src]

Queries managed by the pool will count the number of primitives output by the Primitive Clipping stage of the pipeline

pub const FRAGMENT_SHADER_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of fragment shader invocations

pub const TESSELLATION_CONTROL_SHADER_PATCHES: Self[src]

Queries managed by the pool will count the number of patches processed by the tessellation control shader

pub const TESSELLATION_EVALUATION_SHADER_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of invocations of the tessellation evaluation shader

pub const COMPUTE_SHADER_INVOCATIONS: Self[src]

Queries managed by the pool will count the number of compute shader invocations

pub fn input_assembly_vertices(self) -> Self[src]

Queries managed by the pool will count the number of vertices processed by the input assembly stage

pub fn input_assembly_primitives(self) -> Self[src]

Queries managed by the pool will count the number of primitives processed by the input assembly state

pub fn vertex_shader_invocations(self) -> Self[src]

Queries managed by the pool will count the number of vertex shader invocations

pub fn geometry_shader_invocations(self) -> Self[src]

Queries managed by the pool will count the number of geometry shader invocations

pub fn geometry_shader_primitives(self) -> Self[src]

Queries managed by the pool will count the number of primitives generated by geometry shader invocations

pub fn clipping_invocations(self) -> Self[src]

Queries managed by the pool will count the number of primitives processed by the Primitive Clipping stage of the pipeline

pub fn clipping_primitives(self) -> Self[src]

Queries managed by the pool will count the number of primitives output by the Primitive Clipping stage of the pipeline

pub fn fragment_shader_invocations(self) -> Self[src]

Queries managed by the pool will count the number of fragment shader invocations

pub fn tessellation_control_shader_patches(self) -> Self[src]

Queries managed by the pool will count the number of patches processed by the tessellation control shader

pub fn tessellation_evaluation_shader_invocations(self) -> Self[src]

Queries managed by the pool will count the number of invocations of the tessellation evaluation shader

pub fn compute_shader_invocations(self) -> Self[src]

Queries managed by the pool will count the number of compute shader invocations

Trait Implementations

impl Clone for QueryPipelineStatisticFlags[src]

impl Copy for QueryPipelineStatisticFlags[src]

impl Debug for QueryPipelineStatisticFlags[src]

impl Eq for QueryPipelineStatisticFlags[src]

impl PartialEq<QueryPipelineStatisticFlags> for QueryPipelineStatisticFlags[src]

impl StructuralEq for QueryPipelineStatisticFlags[src]

impl StructuralPartialEq for QueryPipelineStatisticFlags[src]

Auto Trait Implementations

impl RefUnwindSafe for QueryPipelineStatisticFlags

impl Send for QueryPipelineStatisticFlags

impl Sync for QueryPipelineStatisticFlags

impl Unpin for QueryPipelineStatisticFlags

impl UnwindSafe for QueryPipelineStatisticFlags

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.