Ejemplo n.º 1
0
 public static extern void vkCmdCopyQueryPoolResults(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.QueryPool queryPool, uint firstQuery, uint queryCount, SharpVk.Interop.Buffer destinationBuffer, DeviceSize destinationOffset, DeviceSize stride, SharpVk.QueryResultFlags flags);
Ejemplo n.º 2
0
 internal Buffer(SharpVk.Device parent, SharpVk.Interop.Buffer handle)
 {
     this.handle       = handle;
     this.parent       = parent;
     this.commandCache = parent.commandCache;
 }
Ejemplo n.º 3
0
 public static extern void vkCmdUpdateBuffer(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer destinationBuffer, DeviceSize destinationOffset, DeviceSize dataSize, void *data);
Ejemplo n.º 4
0
 public static extern void vkCmdFillBuffer(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer destinationBuffer, DeviceSize destinationOffset, DeviceSize size, uint data);
Ejemplo n.º 5
0
 public static extern void vkCmdCopyBufferToImage(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer sourceBuffer, SharpVk.Interop.Image destinationImage, SharpVk.ImageLayout destinationImageLayout, uint regionCount, SharpVk.BufferImageCopy *regions);
Ejemplo n.º 6
0
 public static extern void vkCmdCopyImageToBuffer(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Image sourceImage, SharpVk.ImageLayout sourceImageLayout, SharpVk.Interop.Buffer destinationBuffer, uint regionCount, SharpVk.BufferImageCopy *regions);
Ejemplo n.º 7
0
 public static extern void vkCmdDispatchIndirect(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer buffer, DeviceSize offset);
Ejemplo n.º 8
0
 public static extern void vkCmdCopyBuffer(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer sourceBuffer, SharpVk.Interop.Buffer destinationBuffer, uint regionCount, SharpVk.BufferCopy *regions);
Ejemplo n.º 9
0
 public static extern void vkCmdDrawIndexedIndirect(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer buffer, DeviceSize offset, uint drawCount, uint stride);
Ejemplo n.º 10
0
 public static extern void vkCmdBindIndexBuffer(SharpVk.Interop.CommandBuffer commandBuffer, SharpVk.Interop.Buffer buffer, DeviceSize offset, SharpVk.IndexType indexType);
Ejemplo n.º 11
0
 public static extern void vkDestroyBuffer(SharpVk.Interop.Device device, SharpVk.Interop.Buffer buffer, SharpVk.Interop.AllocationCallbacks *allocator);
Ejemplo n.º 12
0
 public static extern SharpVk.Result vkBindBufferMemory(SharpVk.Interop.Device device, SharpVk.Interop.Buffer buffer, SharpVk.Interop.DeviceMemory memory, DeviceSize memoryOffset);
Ejemplo n.º 13
0
 public static extern void vkGetBufferMemoryRequirements(SharpVk.Interop.Device device, SharpVk.Interop.Buffer buffer, SharpVk.MemoryRequirements *memoryRequirements);