Click or drag to resize
Ab4d.SharpEngine logo

VulkanMemoryInfo Class

VulkanMemoryInfo provides access to memory allocated on the graphics card that was allocated by a class that implements IVulkanMemoryAllocator. The handle to the allocated memory is assigned to DeviceMemory property. The class also provides Size, MemoryTypeIndex. When the memory is no longer needed, it needs to be disposed by calling FreeMemory(VulkanMemoryInfo) method on the VulkanMemoryAllocator.
Inheritance Hierarchy
System.Object
  Ab4d.SharpEngine.Common.VulkanMemoryInfo

Namespace: Ab4d.SharpEngine.Common
Assembly: Ab4d.SharpEngine (in Ab4d.SharpEngine.dll) Version: 3.0.9208+3b2441d6a11f923f2600f40f4296bdc3d8b46035
Syntax
C#
public class VulkanMemoryInfo

The VulkanMemoryInfo type exposes the following members.

Constructors
 NameDescription
Public methodVulkanMemoryInfo(DeviceMemory, UInt32, Int32, String) Creates and instance of GpuMemory that was manually allocated by the user
Public methodVulkanMemoryInfo(IVulkanMemoryAllocator, Int32, DeviceMemory, UInt32, UInt32, Int32, String) Creates and instance of GpuMemory that was allocated by the VulkanMemoryAllocator
Top
Properties
 NameDescription
Public propertyDeviceMemory 
Public propertyIsDisposed 
Public propertyMemoryBlockId Id of the memory block used by the MemoryAllocator
Public propertyMemoryOffset 
Public propertyMemoryTypeIndex 
Public propertyName 
Public propertySize 
Top
Methods
 NameDescription
Public methodEquals
(Overrides Object.Equals(Object))
Public methodGetHashCode
(Overrides Object.GetHashCode())
Public methodGetMemoryProperties 
Top
Fields
 NameDescription
Public fieldMemoryAllocator 
Top
See Also