[][src]Struct nobs_vulkanism_headless::cmd::Pool

pub struct Pool {
    pub device: Device,
    pub queue_family: u32,
    pub handle: CommandPool,
    // some fields omitted
}

Wrapps a vulkan command pool

The Pool is basically a chach for Streams. The only method begin_stream either creates a new stream or reuses one that is currently not unused.

Fields

device: Devicequeue_family: u32handle: CommandPool

Methods

impl Pool[src]

pub fn new(device: Device, queue_family: u32) -> Result<Self, Error>[src]

Create a new command pool

Arguments

  • device - vulkan device handle
  • queue_family - index of the queue family to which the commands are submitted

pub fn begin_stream(&self) -> Result<Stream, Error>[src]

Get a new stream

Reuses an unused command buffer if there is one, if not creates a new one. Calles begin on the stream and returns it.

Trait Implementations

impl Drop for Pool[src]

Auto Trait Implementations

impl Send for Pool

impl Sync for Pool

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.