Пример #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);