Home
last modified time | relevance | path

Searched defs:StandardCommandPool (Results 1 – 2 of 2) sorted by relevance

/external/rust/crates/vulkano/src/command_buffer/pool/
Dstandard.rs41 pub struct StandardCommandPool { struct
49 per_thread: Mutex<FnvHashMap<thread::ThreadId, Weak<StandardCommandPoolPerThread>>>, argument
52 unsafe impl Send for StandardCommandPool {} argument
53 unsafe impl Sync for StandardCommandPool {} implementation
64 impl StandardCommandPool { implementation
71 pub fn new(device: Arc<Device>, queue_family: QueueFamily) -> StandardCommandPool { in new()
175 unsafe impl DeviceOwned for StandardCommandPool { implementation
/external/rust/crates/vulkano/src/device/
Dmod.rs508 pub fn standard_command_pool(me: &Arc<Self>, queue: QueueFamily) -> Arc<StandardCommandPool> { in standard_command_pool()