Struct vulkano::buffer::cpu_pool::CpuBufferPoolChunk [] [src]

pub struct CpuBufferPoolChunk<T, A> where
    A: MemoryPool
{ /* fields omitted */ }

A subbuffer allocated from a CpuBufferPool.

When this object is destroyed, the subbuffer is automatically reclaimed by the pool.

Trait Implementations

impl<T, A> Clone for CpuBufferPoolChunk<T, A> where
    A: MemoryPool
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T, A> BufferAccess for CpuBufferPoolChunk<T, A> where
    A: MemoryPool
[src]

Returns the inner information about this buffer.

Returns the size of the buffer in bytes.

Returns a key that uniquely identifies the range given by offset/size. Read more

Locks the resource for usage on the GPU. Returns an error if the lock can't be acquired. Read more

Locks the resource for usage on the GPU. Supposes that the resource is already locked, and simply increases the lock by one. Read more

Unlocks the resource previously acquired with try_gpu_lock or increase_gpu_lock. Read more

Returns the length of the buffer in number of elements. Read more

Builds a BufferSlice object holding the buffer by reference.

Builds a BufferSlice object holding part of the buffer by reference. Read more

Builds a BufferSlice object holding the buffer by value.

Builds a BufferSlice object holding part of the buffer by reference. Read more

Returns true if an access to self (as defined by self_offset and self_size) potentially overlaps the same memory as an access to other (as defined by other_offset and other_size). Read more

Returns true if an access to self (as defined by self_offset and self_size) potentially overlaps the same memory as an access to other (as defined by other_first_layer, other_num_layers, other_first_mipmap and other_num_mipmaps). Read more

Shortcut for conflicts_buffer that compares the whole buffer to another.

Shortcut for conflicts_image that compares the whole buffer to a whole image.

Shortcut for conflict_key that grabs the key of the whole buffer.

impl<T, A> Drop for CpuBufferPoolChunk<T, A> where
    A: MemoryPool
[src]

A method called when the value goes out of scope. Read more

impl<T, A> TypedBufferAccess for CpuBufferPoolChunk<T, A> where
    A: MemoryPool
[src]

The type of the content.

impl<T, A> DeviceOwned for CpuBufferPoolChunk<T, A> where
    A: MemoryPool
[src]

Returns the device that owns Self.