pub struct BakedCommands<A: HalApi> {
    pub(crate) encoder: A::CommandEncoder,
    pub(crate) list: Vec<A::CommandBuffer>,
    pub(crate) trackers: Tracker<A>,
    buffer_memory_init_actions: Vec<BufferInitTrackerAction>,
    texture_memory_actions: CommandBufferTextureMemoryActions,
}

Fields§

§encoder: A::CommandEncoder§list: Vec<A::CommandBuffer>§trackers: Tracker<A>§buffer_memory_init_actions: Vec<BufferInitTrackerAction>§texture_memory_actions: CommandBufferTextureMemoryActions

Implementations§

source§

impl<A: HalApi> BakedCommands<A>

source

pub(crate) fn initialize_buffer_memory( &mut self, device_tracker: &mut Tracker<A>, buffer_guard: &mut Storage<Buffer<A>, BufferId> ) -> Result<(), DestroyedBufferError>

source

pub(crate) fn initialize_texture_memory( &mut self, device_tracker: &mut Tracker<A>, texture_guard: &mut Storage<Texture<A>, TextureId>, device: &Device<A> ) -> Result<(), DestroyedTextureError>

Auto Trait Implementations§

§

impl<A> !RefUnwindSafe for BakedCommands<A>

§

impl<A> Send for BakedCommands<A>where A: Send,

§

impl<A> Sync for BakedCommands<A>where A: Sync,

§

impl<A> Unpin for BakedCommands<A>where A: Unpin, <A as Api>::BindGroup: Unpin, <A as Api>::CommandBuffer: Unpin, <A as Api>::CommandEncoder: Unpin, <A as Api>::ComputePipeline: Unpin, <A as Api>::QuerySet: Unpin, <A as Api>::RenderPipeline: Unpin, <A as Api>::Sampler: Unpin, <A as Api>::TextureView: Unpin,

§

impl<A> !UnwindSafe for BakedCommands<A>

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WasmNotSend for Twhere T: Send,

source§

impl<T> WasmNotSync for Twhere T: Sync,