#[repr(C)]pub struct RenderPassColorAttachment {
pub view: TextureViewId,
pub resolve_target: Option<TextureViewId>,
pub channel: PassChannel<Color>,
}
Expand description
Describes a color attachment to a render pass.
Fields§
§view: TextureViewId
The view to use as an attachment.
resolve_target: Option<TextureViewId>
The view that will receive the resolved output if multisampling is used.
channel: PassChannel<Color>
What operations will be performed on this color attachment.
Trait Implementations§
Source§impl Clone for RenderPassColorAttachment
impl Clone for RenderPassColorAttachment
Source§fn clone(&self) -> RenderPassColorAttachment
fn clone(&self) -> RenderPassColorAttachment
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for RenderPassColorAttachment
impl Debug for RenderPassColorAttachment
impl StructuralPartialEq for RenderPassColorAttachment
Auto Trait Implementations§
impl Freeze for RenderPassColorAttachment
impl RefUnwindSafe for RenderPassColorAttachment
impl Send for RenderPassColorAttachment
impl Sync for RenderPassColorAttachment
impl Unpin for RenderPassColorAttachment
impl UnwindSafe for RenderPassColorAttachment
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)