pub struct BlendTarget<T>(/* private fields */);Expand description
Render target component with active blending mode.
- init: (
&str,ColorMask,Blend= blending state) - data:
RenderTargetView<T>
Trait Implementations§
Source§impl<T> Clone for BlendTarget<T>
impl<T> Clone for BlendTarget<T>
Source§impl<R: Resources, T> DataBind<R> for BlendTarget<T>
impl<R: Resources, T> DataBind<R> for BlendTarget<T>
Source§type Data = RenderTargetView<R, T>
type Data = RenderTargetView<R, T>
The associated “data” type - a member of the PSO “data” struct.
Source§fn bind_to(
&self,
out: &mut RawDataSet<R>,
data: &Self::Data,
man: &mut Manager<R>,
access: &mut AccessInfo<R>,
)
fn bind_to( &self, out: &mut RawDataSet<R>, data: &Self::Data, man: &mut Manager<R>, access: &mut AccessInfo<R>, )
Dump the given data into the raw data set.
Source§impl<'a, T: BlendFormat> DataLink<'a> for BlendTarget<T>
impl<'a, T: BlendFormat> DataLink<'a> for BlendTarget<T>
Source§type Init = (&'a str, ColorMask, Blend)
type Init = (&'a str, ColorMask, Blend)
The assotiated “init” type - a member of the PSO “init” struct.
Source§fn link_output(
&mut self,
out: &OutputVar,
init: &Self::Init,
) -> Option<Result<ColorTargetDesc, Format>>
fn link_output( &mut self, out: &OutputVar, init: &Self::Init, ) -> Option<Result<ColorTargetDesc, Format>>
Attempt to link with an output render target (RTV).
Source§fn link_vertex_buffer(
&mut self,
_: BufferIndex,
_: &Self::Init,
) -> Option<VertexBufferDesc>
fn link_vertex_buffer( &mut self, _: BufferIndex, _: &Self::Init, ) -> Option<VertexBufferDesc>
Attempt to link with a vertex buffer containing multiple attributes.
Source§fn link_input(
&mut self,
_: &AttributeVar,
_: &Self::Init,
) -> Option<Result<AttributeDesc, Format>>
fn link_input( &mut self, _: &AttributeVar, _: &Self::Init, ) -> Option<Result<AttributeDesc, Format>>
Attempt to link with a vertex attribute.
Source§fn link_constant_buffer<'b>(
&mut self,
_: &'b ConstantBufferVar,
_: &Self::Init,
) -> Option<Result<ConstantBufferDesc, ElementError<&'b str>>>
fn link_constant_buffer<'b>( &mut self, _: &'b ConstantBufferVar, _: &Self::Init, ) -> Option<Result<ConstantBufferDesc, ElementError<&'b str>>>
Attempt to link with a constant buffer.
Source§fn link_global_constant(
&mut self,
_: &ConstVar,
_: &Self::Init,
) -> Option<Result<(), CompatibilityError>>
fn link_global_constant( &mut self, _: &ConstVar, _: &Self::Init, ) -> Option<Result<(), CompatibilityError>>
Attempt to link with a global constant.
Source§fn link_depth_stencil(&mut self, _: &Self::Init) -> Option<DepthStencilDesc>
fn link_depth_stencil(&mut self, _: &Self::Init) -> Option<DepthStencilDesc>
Attempt to link with a depth-stencil target (DSV).
Source§fn link_resource_view(
&mut self,
_: &TextureVar,
_: &Self::Init,
) -> Option<Result<ResourceViewDesc, Format>>
fn link_resource_view( &mut self, _: &TextureVar, _: &Self::Init, ) -> Option<Result<ResourceViewDesc, Format>>
Attempt to link with a shader resource (SRV).
Source§fn link_unordered_view(
&mut self,
_: &UnorderedVar,
_: &Self::Init,
) -> Option<Result<UnorderedViewDesc, Format>>
fn link_unordered_view( &mut self, _: &UnorderedVar, _: &Self::Init, ) -> Option<Result<UnorderedViewDesc, Format>>
Attempt to link with an unordered access (UAV).
Source§fn link_sampler(
&mut self,
_: &SamplerVar,
_: &Self::Init,
) -> Option<SamplerDesc>
fn link_sampler( &mut self, _: &SamplerVar, _: &Self::Init, ) -> Option<SamplerDesc>
Attempt to link with a sampler.
Source§fn link_scissor(&mut self) -> bool
fn link_scissor(&mut self) -> bool
Attempt to enable scissor test.
Source§impl<T> Debug for BlendTarget<T>
impl<T> Debug for BlendTarget<T>
Source§impl<T> Hash for BlendTarget<T>
impl<T> Hash for BlendTarget<T>
Source§impl<T> PartialEq for BlendTarget<T>
impl<T> PartialEq for BlendTarget<T>
impl<T> Eq for BlendTarget<T>
Auto Trait Implementations§
impl<T> Freeze for BlendTarget<T>
impl<T> RefUnwindSafe for BlendTarget<T>where
T: RefUnwindSafe,
impl<T> Send for BlendTarget<T>where
T: Send,
impl<T> Sync for BlendTarget<T>where
T: Sync,
impl<T> Unpin for BlendTarget<T>where
T: Unpin,
impl<T> UnwindSafe for BlendTarget<T>where
T: UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more