Struct vulkano::command_buffer::pool::standard::StandardCommandPool [] [src]

pub struct StandardCommandPool { /* fields omitted */ }

Standard implementation of a command pool.

Will use one Vulkan pool per thread in order to avoid locking. Will try to reuse command buffers. Command buffers can't be moved between threads during the building process, but finished command buffers can.

Methods

impl StandardCommandPool
[src]

Builds a new pool.

Panic

  • Panics if the device and the queue family don't belong to the same physical device.

Trait Implementations

impl Send for StandardCommandPool
[src]

impl Sync for StandardCommandPool
[src]

impl DeviceOwned for StandardCommandPool
[src]

Returns the device that owns Self.