Uses of Record Class
club.doki7.vulkan.handle.VkCommandBuffer.Ptr
Packages that use VkCommandBuffer.Ptr
Package
Description
Vulkan API commands
Structure (
struct or union) types of Vulkan API.Opaque handle types of Vulkan API.
-
Uses of VkCommandBuffer.Ptr in club.doki7.vulkan.command
Methods in club.doki7.vulkan.command with parameters of type VkCommandBuffer.PtrModifier and TypeMethodDescriptionintVkDeviceCommands.allocateCommandBuffers(VkDevice device, VkCommandBufferAllocateInfo pAllocateInfo, VkCommandBuffer.Ptr pCommandBuffers) voidVkDeviceCommands.cmdExecuteCommands(VkCommandBuffer commandBuffer, int commandBufferCount, VkCommandBuffer.Ptr pCommandBuffers) voidVkDeviceCommands.freeCommandBuffers(VkDevice device, VkCommandPool commandPool, int commandBufferCount, VkCommandBuffer.Ptr pCommandBuffers) -
Uses of VkCommandBuffer.Ptr in club.doki7.vulkan.datatype
Methods in club.doki7.vulkan.datatype that return VkCommandBuffer.PtrModifier and TypeMethodDescriptionVkSubmitInfo.pCommandBuffers()Note: the returnedVkCommandBuffer.Ptrdoes not have correctsize()property.Methods in club.doki7.vulkan.datatype with parameters of type VkCommandBuffer.Ptr -
Uses of VkCommandBuffer.Ptr in club.doki7.vulkan.handle
Methods in club.doki7.vulkan.handle that return VkCommandBuffer.PtrModifier and TypeMethodDescriptionstatic VkCommandBuffer.Ptrstatic VkCommandBuffer.Ptrstatic VkCommandBuffer.PtrVkCommandBuffer.Ptr.allocate(Arena arena, @Nullable VkCommandBuffer @NotNull [] values) static VkCommandBuffer.PtrVkCommandBuffer.Ptr.allocate(Arena arena, @NotNull Collection<@Nullable VkCommandBuffer> values) static VkCommandBuffer.PtrVkCommandBuffer.Ptr.allocateV(Arena arena, @Nullable VkCommandBuffer value0, @Nullable VkCommandBuffer... values) VkCommandBuffer.Ptr.offset(long offset) VkCommandBuffer.Ptr.reinterpret(long newSize) Assume theVkCommandBuffer.Ptris capable of holding at leastnewSizehandles, create a new viewVkCommandBuffer.Ptrthat uses the same backing storage as thisVkCommandBuffer.Ptr, but with the new size.VkCommandBuffer.Ptr.slice(long end) VkCommandBuffer.Ptr.slice(long start, long end) Note that this function uses theList.subList(int, int)semantics (left inclusive, right exclusive interval), notMemorySegment.asSlice(long, long)semantics (offset + newSize).