[][src]Struct amethyst_rendy::rendy::command::CommandPool

pub struct CommandPool<B, C = QueueType, R = NoIndividualReset> where
    B: Backend
{ /* fields omitted */ }

Simple pool wrapper. Doesn't provide any guarantees. Wraps raw buffers into CommandCommand buffer.

Methods

impl<B, C, R> CommandPool<B, C, R> where
    B: Backend,
    R: Reset
[src]

pub unsafe fn create(
    family: FamilyId,
    capability: C,
    device: &Device<B>
) -> Result<CommandPool<B, C, R>, OutOfMemory> where
    C: Capability,
    R: Reset
[src]

Create command pool associated with the family. Command buffers created from the pool could be submitted to the queues of the family.

Safety

Family must belong to specified device. Family must have specified capability.

pub unsafe fn from_raw(
    raw: <B as Backend>::CommandPool,
    capability: C,
    reset: R,
    family: FamilyId
) -> CommandPool<B, C, R>
[src]

Wrap raw command pool.

Safety

  • raw must be valid command pool handle.
  • The command pool must be created for specified family index.
  • capability must be subset of capabilites of the family the pool was created for.
  • if reset is IndividualReset the pool must be created with individual command buffer reset flag set.

pub fn allocate_buffers<L>(
    &mut self,
    count: usize
) -> Vec<CommandBuffer<B, C, InitialState, L, R>> where
    C: Capability,
    L: Level
[src]

Allocate new command buffers.

pub unsafe fn free_buffers<impl Resettable, impl Level, impl IntoIterator>>(
    &mut self,
    buffers: impl IntoIterator>
) where
    impl IntoIterator>: IntoIterator<Item = CommandBuffer<B, C, impl Resettable, impl Level, R>>,
    impl Level: Level,
    impl Resettable: Resettable
[src]

Free buffers. Buffers must be in droppable state. TODO: Validate buffers were allocated from this pool.

pub unsafe fn reset(&mut self)[src]

Reset all buffers of this pool.

Safety

All buffers allocated from this pool must be marked reset. See [CommandBuffer::mark_reset](struct.Command buffer.html#method.mark_reset)

pub unsafe fn dispose(self, device: &Device<B>)[src]

Dispose of command pool.

Safety

All buffers allocated from this pool must be freed.

pub fn with_queue_type(self) -> CommandPool<B, QueueType, R> where
    C: Capability
[src]

Convert capability level

pub fn with_capability<U>(
    self
) -> Result<CommandPool<B, U, R>, CommandPool<B, C, R>> where
    C: Supports<U>, 
[src]

Convert capability level

impl<B, C, R> CommandPool<B, C, R> where
    B: Backend
[src]

pub fn family_id(&self) -> FamilyId[src]

Get owner id.

pub fn assert_family_owner(&self, family: &Family<B, C>)[src]

Assert specified family is owner.

pub fn assert_device_owner(&self, device: &Device<B>)[src]

Assert specified device is owner.

pub fn assert_instance_owner(&self, instance: &Instance<B>)[src]

Assert specified instance is owner.

Trait Implementations

impl<B, C, R> Debug for CommandPool<B, C, R> where
    B: Backend,
    C: Debug,
    R: Debug
[src]

Auto Trait Implementations

impl<B, C, R> Unpin for CommandPool<B, C, R> where
    C: Unpin,
    R: Unpin,
    <B as Backend>::CommandPool: Unpin

impl<B, C, R> Sync for CommandPool<B, C, R> where
    C: Sync,
    R: Sync,
    <B as Backend>::CommandPool: Sync

impl<B, C, R> Send for CommandPool<B, C, R> where
    C: Send,
    R: Send,
    <B as Backend>::CommandPool: Send

impl<B, C, R> UnwindSafe for CommandPool<B, C, R> where
    C: UnwindSafe,
    R: UnwindSafe,
    <B as Backend>::CommandPool: UnwindSafe

impl<B, C, R> RefUnwindSafe for CommandPool<B, C, R> where
    C: RefUnwindSafe,
    R: RefUnwindSafe,
    <B as Backend>::CommandPool: RefUnwindSafe

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

fn adapt_into(self) -> D[src]

Convert the source color to the destination color using the bradford method by default Read more

impl<T> SetParameter for T[src]

fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
    T: Parameter<Self>, 
[src]

Sets value as a parameter of self.

impl<T> Supports<T> for T[src]

impl<T> Erased for T[src]

impl<T> Same<T> for T[src]

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> Resource for T where
    T: Any + Send + Sync
[src]

impl<T> Any for T where
    T: Any
[src]

impl<T> Event for T where
    T: Send + Sync + 'static, 
[src]