Struct vulkanalia::vk::ShaderStatisticsInfoAMDBuilder[][src]

#[repr(transparent)]pub struct ShaderStatisticsInfoAMDBuilder { /* fields omitted */ }

A builder for a ShaderStatisticsInfoAMD.

Implementations

impl ShaderStatisticsInfoAMDBuilder[src]

pub fn shader_stage_mask(self, shader_stage_mask: ShaderStageFlags) -> Self[src]

pub fn resource_usage(
    self,
    resource_usage: impl Cast<Target = ShaderResourceUsageAMD>
) -> Self
[src]

pub fn num_physical_vgprs(self, num_physical_vgprs: u32) -> Self[src]

pub fn num_physical_sgprs(self, num_physical_sgprs: u32) -> Self[src]

pub fn num_available_vgprs(self, num_available_vgprs: u32) -> Self[src]

pub fn num_available_sgprs(self, num_available_sgprs: u32) -> Self[src]

pub fn compute_work_group_size(self, compute_work_group_size: [u32; 3]) -> Self[src]

pub fn build(self) -> ShaderStatisticsInfoAMD[src]

Trait Implementations

impl Cast for ShaderStatisticsInfoAMDBuilder[src]

type Target = ShaderStatisticsInfoAMD

The other type this type type can be used interchangeably with in FFI.

impl Clone for ShaderStatisticsInfoAMDBuilder[src]

impl Copy for ShaderStatisticsInfoAMDBuilder[src]

impl Debug for ShaderStatisticsInfoAMDBuilder[src]

impl Default for ShaderStatisticsInfoAMDBuilder[src]

impl Deref for ShaderStatisticsInfoAMDBuilder[src]

type Target = ShaderStatisticsInfoAMD

The resulting type after dereferencing.

impl DerefMut for ShaderStatisticsInfoAMDBuilder[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.