Struct vulkano::command_buffer::cb::AbstractStorageLayer [] [src]

pub struct AbstractStorageLayer<I> { /* fields omitted */ }

Layer that stores commands in an abstract way.

Methods

impl<I> AbstractStorageLayer<I>
[src]

Builds a new AbstractStorageLayer.

Trait Implementations

impl<I> CommandBuffer for AbstractStorageLayer<I> where
    I: CommandBuffer
[src]

The command pool of the command buffer.

Returns the underlying UnsafeCommandBuffer of this command buffer.

Checks whether this command buffer is allowed to be submitted after the future and on the given queue. Read more

Returns the queue family of the command buffer.

Executes this command buffer on a queue. Read more

Executes the command buffer after an existing future. Read more

impl<I> DeviceOwned for AbstractStorageLayer<I> where
    I: DeviceOwned
[src]

Returns the device that owns Self.

impl<I, O, E> CommandBufferBuild for AbstractStorageLayer<I> where
    I: CommandBufferBuild<Out = O, Err = E>, 
[src]

The type of the built command buffer.

Error that can be returned when building.

Builds the command buffer.

impl<I> CommandBufferBuilder for AbstractStorageLayer<I> where
    I: CommandBufferBuilder
[src]

Returns the queue family of the command buffer builder.

Adds a command that writes the content of a buffer. Read more

Adds a command that writes data to a buffer.

Adds a command that copies from a buffer to another.

Adds a command that copies the content of a buffer to an image. Read more

Same as copy_buffer_to_image but lets you specify a range for the destination image.

Adds a command that starts a render pass. Read more

Adds a command that jumps to the next subpass of the current render pass.

Adds a command that ends the current render pass. Read more

Adds a command that draws. Read more

Adds a command that draws indexed vertices. Read more

Adds an indirect draw command. Read more

Executes a compute shader.

Builds the actual command buffer. Read more

Returns true if the pool of the builder supports graphics operations.

Returns true if the pool of the builder supports compute operations.

impl<I, Rp, F> AddCommand<CmdBeginRenderPass<Rp, F>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBeginRenderPass<Rp, F>, Out = I>,
    CmdBeginRenderPass<Rp, F>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, Pl> AddCommand<CmdBindDescriptorSets<S, Pl>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBindDescriptorSets<S, Pl>, Out = I>,
    CmdBindDescriptorSets<S, Pl>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, B> AddCommand<CmdBindIndexBuffer<B>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBindIndexBuffer<B>, Out = I>,
    CmdBindIndexBuffer<B>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, Pl> AddCommand<CmdBindPipeline<Pl>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBindPipeline<Pl>, Out = I>,
    CmdBindPipeline<Pl>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, V> AddCommand<CmdBindVertexBuffers<V>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBindVertexBuffers<V>, Out = I>,
    CmdBindVertexBuffers<V>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, D> AddCommand<CmdBlitImage<S, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdBlitImage<S, D>, Out = I>,
    CmdBlitImage<S, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdClearAttachments> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdClearAttachments, Out = I>,
    CmdClearAttachments: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, D> AddCommand<CmdCopyBuffer<S, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdCopyBuffer<S, D>, Out = I>,
    CmdCopyBuffer<S, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, D> AddCommand<CmdCopyBufferToImage<S, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdCopyBufferToImage<S, D>, Out = I>,
    CmdCopyBufferToImage<S, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, D> AddCommand<CmdCopyImage<S, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdCopyImage<S, D>, Out = I>,
    CmdCopyImage<S, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdDispatchRaw> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdDispatchRaw, Out = I>,
    CmdDispatchRaw: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdDrawIndexedRaw> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdDrawIndexedRaw, Out = I>,
    CmdDrawIndexedRaw: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, B> AddCommand<CmdDrawIndirectRaw<B>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdDrawIndirectRaw<B>, Out = I>,
    CmdDrawIndirectRaw<B>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdDrawRaw> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdDrawRaw, Out = I>,
    CmdDrawRaw: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdEndRenderPass> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdEndRenderPass, Out = I>,
    CmdEndRenderPass: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, C> AddCommand<CmdExecuteCommands<C>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdExecuteCommands<C>, Out = I>,
    CmdExecuteCommands<C>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, B> AddCommand<CmdFillBuffer<B>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdFillBuffer<B>, Out = I>,
    CmdFillBuffer<B>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdNextSubpass> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdNextSubpass, Out = I>,
    CmdNextSubpass: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, Pc, Pl> AddCommand<CmdPushConstants<Pc, Pl>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdPushConstants<Pc, Pl>, Out = I>,
    CmdPushConstants<Pc, Pl>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, S, D> AddCommand<CmdResolveImage<S, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdResolveImage<S, D>, Out = I>,
    CmdResolveImage<S, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdSetEvent> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdSetEvent, Out = I>,
    CmdSetEvent: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I> AddCommand<CmdSetState> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdSetState, Out = I>,
    CmdSetState: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more

impl<I, B, D> AddCommand<CmdUpdateBuffer<B, D>> for AbstractStorageLayer<I> where
    I: for<'r> AddCommand<&'r CmdUpdateBuffer<B, D>, Out = I>,
    CmdUpdateBuffer<B, D>: Send + Sync + 'static, 
[src]

The new command buffer builder type.

Adds the command. This takes ownership of the builder and returns a new builder with the command appended at the end of it. Read more