Click or drag to resize
Ab4d.SharpEngine logo

GpuBuffer Properties

The GpuBuffer type exposes the following members.

Properties
 NameDescription
Public propertyAllocatedMemorySize Gets the size of the allocated memory in bytes. This value can be bigger then the BufferSize.
Public propertyBuffer Gets the Vulkan Buffer
Public propertyBufferMemory Gets the VulkanMemoryInfo that represents the memory location of the buffer
Public propertyBufferSize Gets the size of the buffer in bytes. This represents the amount of memory required to store the ItemsCount * sizeof(ItemType). This value can be smaller than the size of actually allocated memory (AllocatedMemorySize). When using vkCmdCopyBuffer, we need to specify this value and not AllocatedMemorySize.
Public propertyIsDataWritePostponed True when some data is not yet written to this GpuBuffer because the data will be copied in the background thread or in the GpuStagingBuffer to be executed in a batch.
Public propertyIsHostVisible True if buffer can be accessed from the CPU (MemoryPropertyFlags have HostVisible flag).
Public propertyIsMapped True if buffer is currently mapped (GetMappedMemoryPtr or GetMappedMemorySpan methods were called).
Public propertyIsNonCoherentMemory True if buffer is using non-coherent memory that needs to be manually invalidated or flashed (MemoryPropertyFlags has HostVisible flag but not HostCoherent flag).
Public propertyIsPersistentlyMapped True if buffer is persistently mapped.
Public propertyItemsCount Gets the number of items of type (ItemType) in this buffer.
Public propertyItemType Gets the type of each item in this buffer.
Public propertyQueueFamilies Gets the Queue families that can be used for this buffer.
Top
See Also