Struct windows_sys::Win32::Graphics::Direct3D12::D3D12_PARAMETER_DESC
[−]#[repr(C)]pub struct D3D12_PARAMETER_DESC {
pub Name: PCSTR,
pub SemanticName: PCSTR,
pub Type: D3D_SHADER_VARIABLE_TYPE,
pub Class: D3D_SHADER_VARIABLE_CLASS,
pub Rows: u32,
pub Columns: u32,
pub InterpolationMode: D3D_INTERPOLATION_MODE,
pub Flags: D3D_PARAMETER_FLAGS,
pub FirstInRegister: u32,
pub FirstInComponent: u32,
pub FirstOutRegister: u32,
pub FirstOutComponent: u32,
}
Expand description
Required features: "Win32_Graphics_Direct3D12"
, "Win32_Graphics_Direct3D"
Fields
Name: PCSTR
SemanticName: PCSTR
Type: D3D_SHADER_VARIABLE_TYPE
Class: D3D_SHADER_VARIABLE_CLASS
Rows: u32
Columns: u32
InterpolationMode: D3D_INTERPOLATION_MODE
Flags: D3D_PARAMETER_FLAGS
FirstInRegister: u32
FirstInComponent: u32
FirstOutRegister: u32
FirstOutComponent: u32
Trait Implementations
impl Clone for D3D12_PARAMETER_DESC
impl Clone for D3D12_PARAMETER_DESC
impl Copy for D3D12_PARAMETER_DESC
Auto Trait Implementations
impl RefUnwindSafe for D3D12_PARAMETER_DESC
impl !Send for D3D12_PARAMETER_DESC
impl !Sync for D3D12_PARAMETER_DESC
impl Unpin for D3D12_PARAMETER_DESC
impl UnwindSafe for D3D12_PARAMETER_DESC
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more