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 TypeMethodDescriptionvoidVkDeviceCommands.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) voidVkDeviceCommands.cmdWaitEvents2(VkCommandBuffer commandBuffer, int eventCount, VkEvent.Ptr pEvents, IVkDependencyInfo pDependencyInfos) voidVkDeviceCommands.cmdWaitEvents2KHR(VkCommandBuffer commandBuffer, int eventCount, VkEvent.Ptr pEvents, IVkDependencyInfo pDependencyInfos) intVkDeviceCommands.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.Ptrstatic VkEvent.Ptrstatic VkEvent.Ptrstatic VkEvent.PtrVkEvent.Ptr.allocate(Arena arena, @NotNull Collection<@Nullable VkEvent> values) static VkEvent.PtrVkEvent.Ptr.offset(long offset) VkEvent.Ptr.reinterpret(long newSize) Assume theVkEvent.Ptris capable of holding at leastnewSizehandles, create a new viewVkEvent.Ptrthat 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).