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 TypeMethodDescriptionint
VkDeviceCommands.allocateCommandBuffers
(VkDevice device, VkCommandBufferAllocateInfo pAllocateInfo, VkCommandBuffer.Ptr pCommandBuffers) void
VkDeviceCommands.cmdExecuteCommands
(VkCommandBuffer commandBuffer, int commandBufferCount, VkCommandBuffer.Ptr pCommandBuffers) void
VkDeviceCommands.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.Ptr
does 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.Ptr
static VkCommandBuffer.Ptr
static VkCommandBuffer.Ptr
VkCommandBuffer.Ptr.allocate
(Arena arena, @Nullable VkCommandBuffer @NotNull [] values) static VkCommandBuffer.Ptr
VkCommandBuffer.Ptr.allocate
(Arena arena, @NotNull Collection<@Nullable VkCommandBuffer> values) static VkCommandBuffer.Ptr
VkCommandBuffer.Ptr.allocateV
(Arena arena, @Nullable VkCommandBuffer value0, @Nullable VkCommandBuffer... values) VkCommandBuffer.Ptr.offset
(long offset) VkCommandBuffer.Ptr.reinterpret
(long newSize) Assume theVkCommandBuffer.Ptr
is capable of holding at leastnewSize
handles, create a new viewVkCommandBuffer.Ptr
that 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).