Uses of Record Class
club.doki7.vulkan.handle.VkEvent.Ptr
Packages that use VkEvent.Ptr
Package
Description
Vulkan API commands
Opaque handle types of Vulkan API.
-
Uses of VkEvent.Ptr in club.doki7.vulkan.command
Methods in club.doki7.vulkan.command with parameters of type VkEvent.PtrModifier and TypeMethodDescriptionvoid
VkDeviceCommands.cmdWaitEvents
(VkCommandBuffer commandBuffer, int eventCount, VkEvent.Ptr pEvents, int srcStageMask, int dstStageMask, int memoryBarrierCount, @Nullable IVkMemoryBarrier pMemoryBarriers, int bufferMemoryBarrierCount, @Nullable IVkBufferMemoryBarrier pBufferMemoryBarriers, int imageMemoryBarrierCount, @Nullable IVkImageMemoryBarrier pImageMemoryBarriers) void
VkDeviceCommands.cmdWaitEvents2
(VkCommandBuffer commandBuffer, int eventCount, VkEvent.Ptr pEvents, IVkDependencyInfo pDependencyInfos) void
VkDeviceCommands.cmdWaitEvents2KHR
(VkCommandBuffer commandBuffer, int eventCount, VkEvent.Ptr pEvents, IVkDependencyInfo pDependencyInfos) int
VkDeviceCommands.createEvent
(VkDevice device, VkEventCreateInfo pCreateInfo, @Nullable VkAllocationCallbacks pAllocator, VkEvent.Ptr pEvent) -
Uses of VkEvent.Ptr in club.doki7.vulkan.handle
Methods in club.doki7.vulkan.handle that return VkEvent.PtrModifier and TypeMethodDescriptionstatic VkEvent.Ptr
static VkEvent.Ptr
static VkEvent.Ptr
static VkEvent.Ptr
VkEvent.Ptr.allocate
(Arena arena, @NotNull Collection<@Nullable VkEvent> values) static VkEvent.Ptr
VkEvent.Ptr.offset
(long offset) VkEvent.Ptr.reinterpret
(long newSize) Assume theVkEvent.Ptr
is capable of holding at leastnewSize
handles, create a new viewVkEvent.Ptr
that uses the same backing storage as thisVkEvent.Ptr
, but with the new size.VkEvent.Ptr.slice
(long end) VkEvent.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).