#[repr(C)]pub struct D3D12_RENDER_TARGET_BLEND_DESC {
pub BlendEnable: BOOL,
pub LogicOpEnable: BOOL,
pub SrcBlend: D3D12_BLEND,
pub DestBlend: D3D12_BLEND,
pub BlendOp: D3D12_BLEND_OP,
pub SrcBlendAlpha: D3D12_BLEND,
pub DestBlendAlpha: D3D12_BLEND,
pub BlendOpAlpha: D3D12_BLEND_OP,
pub LogicOp: D3D12_LOGIC_OP,
pub RenderTargetWriteMask: u8,
}
Expand description
Required features: "Win32_Graphics_Direct3D12"
, "Win32_Foundation"
Fields
BlendEnable: BOOL
LogicOpEnable: BOOL
SrcBlend: D3D12_BLEND
DestBlend: D3D12_BLEND
BlendOp: D3D12_BLEND_OP
SrcBlendAlpha: D3D12_BLEND
DestBlendAlpha: D3D12_BLEND
BlendOpAlpha: D3D12_BLEND_OP
LogicOp: D3D12_LOGIC_OP
RenderTargetWriteMask: u8
Trait Implementations
impl Clone for D3D12_RENDER_TARGET_BLEND_DESC
impl Clone for D3D12_RENDER_TARGET_BLEND_DESC
impl Copy for D3D12_RENDER_TARGET_BLEND_DESC
Auto Trait Implementations
impl RefUnwindSafe for D3D12_RENDER_TARGET_BLEND_DESC
impl Send for D3D12_RENDER_TARGET_BLEND_DESC
impl Sync for D3D12_RENDER_TARGET_BLEND_DESC
impl Unpin for D3D12_RENDER_TARGET_BLEND_DESC
impl UnwindSafe for D3D12_RENDER_TARGET_BLEND_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