Struct wgpu_core::command::PassChannel
source · #[repr(C)]pub struct PassChannel<V, L = Option<LoadOp>, S = Option<StoreOp>> {
pub load_op: L,
pub store_op: S,
pub clear_value: V,
pub read_only: bool,
}
Expand description
Describes an individual channel within a render pass, such as color, depth, or stencil.
Fields§
§load_op: L
Operation to perform to the output attachment at the start of a renderpass.
This must be clear if it is the first renderpass rendering to a swap chain image.
store_op: S
Operation to perform to the output attachment at the end of a renderpass.
clear_value: V
If load_op is LoadOp::Clear
, the attachment will be cleared to this
color.
read_only: bool
If true, the relevant channel is not changed by a renderpass, and the corresponding attachment can be used inside the pass by other read-only usages.
Implementations§
source§impl<V> PassChannel<V, LoadOp, StoreOp>
impl<V> PassChannel<V, LoadOp, StoreOp>
fn hal_ops(&self) -> AttachmentOps
Trait Implementations§
source§impl<V: Clone, L: Clone, S: Clone> Clone for PassChannel<V, L, S>
impl<V: Clone, L: Clone, S: Clone> Clone for PassChannel<V, L, S>
source§fn clone(&self) -> PassChannel<V, L, S>
fn clone(&self) -> PassChannel<V, L, S>
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<'de, V, L, S> Deserialize<'de> for PassChannel<V, L, S>
impl<'de, V, L, S> Deserialize<'de> for PassChannel<V, L, S>
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<V, L, S> Serialize for PassChannel<V, L, S>
impl<V, L, S> Serialize for PassChannel<V, L, S>
impl<V: Eq, L: Eq, S: Eq> Eq for PassChannel<V, L, S>
impl<V, L, S> StructuralPartialEq for PassChannel<V, L, S>
Auto Trait Implementations§
impl<V, L, S> Freeze for PassChannel<V, L, S>
impl<V, L, S> RefUnwindSafe for PassChannel<V, L, S>
impl<V, L, S> Send for PassChannel<V, L, S>
impl<V, L, S> Sync for PassChannel<V, L, S>
impl<V, L, S> Unpin for PassChannel<V, L, S>
impl<V, L, S> UnwindSafe for PassChannel<V, L, S>
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
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.