예제 #1
0
 public static extern SharpVk.Result vkBindImageMemory(SharpVk.Interop.Device device, SharpVk.Interop.Image image, SharpVk.Interop.DeviceMemory memory, DeviceSize memoryOffset);
예제 #2
0
 internal DeviceMemory(SharpVk.Device parent, SharpVk.Interop.DeviceMemory handle)
 {
     this.handle       = handle;
     this.parent       = parent;
     this.commandCache = parent.commandCache;
 }
예제 #3
0
 public static extern SharpVk.Result vkBindBufferMemory(SharpVk.Interop.Device device, SharpVk.Interop.Buffer buffer, SharpVk.Interop.DeviceMemory memory, DeviceSize memoryOffset);
예제 #4
0
 public static extern void vkGetDeviceMemoryCommitment(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory, DeviceSize *committedMemoryInBytes);
예제 #5
0
 public static extern void vkUnmapMemory(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory);
예제 #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);
예제 #7
0
 public static extern void vkFreeMemory(SharpVk.Interop.Device device, SharpVk.Interop.DeviceMemory memory, SharpVk.Interop.AllocationCallbacks *allocator);