Lines Matching defs:AutoCommandBufferBuilder
98 pub struct AutoCommandBufferBuilder<L, P = StandardCommandPoolBuilder> { struct
99 inner: SyncCommandBufferBuilder,
100 pool_builder_alloc: P, // Safety: must be dropped after `inner`
101 state_cacher: StateCacher,
104 queue_family_id: u32,
107 inheritance: Option<CommandBufferInheritance<Box<dyn FramebufferAbstract + Send + Sync>>>,
110 usage: CommandBufferUsage,
113 render_pass_state: Option<RenderPassState>,
137 impl AutoCommandBufferBuilder<PrimaryAutoCommandBuffer, StandardCommandPoolBuilder> { implementation
157 impl AutoCommandBufferBuilder<SecondaryAutoCommandBuffer, StandardCommandPoolBuilder> { impl
267 impl<L> AutoCommandBufferBuilder<L, StandardCommandPoolBuilder> { implementation
385 impl<P> AutoCommandBufferBuilder<PrimaryAutoCommandBuffer<P::Alloc>, P> implementation
418 impl<P> AutoCommandBufferBuilder<SecondaryAutoCommandBuffer<P::Alloc>, P> implementation
448 impl<L, P> AutoCommandBufferBuilder<L, P> { implementation
1730 impl<P> AutoCommandBufferBuilder<PrimaryAutoCommandBuffer<P::Alloc>, P> impl
2074 impl<P> AutoCommandBufferBuilder<SecondaryAutoCommandBuffer<P::Alloc>, P> where impl
2079 unsafe impl<L, P> DeviceOwned for AutoCommandBufferBuilder<L, P> { implementation