[][src]Struct lava::amd::VkShaderStatisticsInfo

pub struct VkShaderStatisticsInfo {
    pub shader_stage_mask: VkShaderStageFlags,
    pub resource_usage: VkShaderResourceUsage,
    pub num_physical_vgprs: usize,
    pub num_physical_sgprs: usize,
    pub num_available_vgprs: usize,
    pub num_available_sgprs: usize,
    pub compute_work_group_size: [usize; 3],
}

Fields

shader_stage_mask: VkShaderStageFlagsresource_usage: VkShaderResourceUsagenum_physical_vgprs: usizenum_physical_sgprs: usizenum_available_vgprs: usizenum_available_sgprs: usizecompute_work_group_size: [usize; 3]

Trait Implementations

impl Clone for VkShaderStatisticsInfo[src]

impl Debug for VkShaderStatisticsInfo[src]

impl Default for VkShaderStatisticsInfo[src]

Auto Trait Implementations

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.