Exemplo n.º 1
0
 public static extern SharpVk.Result vkBindImageMemory(SharpVk.Interop.Device device, SharpVk.Interop.Image image, SharpVk.Interop.DeviceMemory memory, DeviceSize memoryOffset);
Exemplo n.º 2
0
 internal DeviceMemory(SharpVk.Device parent, SharpVk.Interop.DeviceMemory handle)
 {
     this.handle       = handle;
     this.parent       = parent;
     this.commandCache = parent.commandCache;
 }
Exemplo n.º 3
0
 public static extern SharpVk.Result vkBindBufferMemory(SharpVk.Interop.Device device, SharpVk.Interop.Buffer buffer, SharpVk.Interop.DeviceMemory memory, DeviceSize memoryOffset);
Exemplo n.º 4
0
 public static extern void vkGetDeviceMemoryCommitment(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory, DeviceSize *committedMemoryInBytes);
Exemplo n.º 5
0
 public static extern void vkUnmapMemory(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory);
Exemplo n.º 6
0
 public static extern SharpVk.Result vkMapMemory(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory, DeviceSize offset, DeviceSize size, SharpVk.MemoryMapFlags flags, void **data);
Exemplo n.º 7
0
 public static extern void vkFreeMemory(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory, SharpVk.Interop.AllocationCallbacks *allocator);