Uses of Record Class
club.doki7.vulkan.handle.VkFence.Ptr
Packages that use VkFence.Ptr
Package
Description
Vulkan API commands
Structure (
struct or union) types of Vulkan API.Opaque handle types of Vulkan API.
-
Uses of VkFence.Ptr in club.doki7.vulkan.command
Methods in club.doki7.vulkan.command with parameters of type VkFence.PtrModifier and TypeMethodDescriptionintVkDeviceCommands.createFence(VkDevice device, VkFenceCreateInfo pCreateInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) intVkDeviceCommands.registerDeviceEventEXT(VkDevice device, VkDeviceEventInfoEXT pDeviceEventInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) intVkDeviceCommands.registerDisplayEventEXT(VkDevice device, VkDisplayKHR display, VkDisplayEventInfoEXT pDisplayEventInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) intVkDeviceCommands.resetFences(VkDevice device, int fenceCount, VkFence.Ptr pFences) intVkDeviceCommands.waitForFences(VkDevice device, int fenceCount, VkFence.Ptr pFences, int waitAll, long timeout) -
Uses of VkFence.Ptr in club.doki7.vulkan.datatype
Methods in club.doki7.vulkan.datatype that return VkFence.PtrModifier and TypeMethodDescriptionVkSwapchainPresentFenceInfoEXT.pFences()Note: the returnedVkFence.Ptrdoes not have correctsize()property.Methods in club.doki7.vulkan.datatype with parameters of type VkFence.Ptr -
Uses of VkFence.Ptr in club.doki7.vulkan.handle
Methods in club.doki7.vulkan.handle that return VkFence.PtrModifier and TypeMethodDescriptionstatic VkFence.Ptrstatic VkFence.Ptrstatic VkFence.Ptrstatic VkFence.PtrVkFence.Ptr.allocate(Arena arena, @NotNull Collection<@Nullable VkFence> values) static VkFence.PtrVkFence.Ptr.offset(long offset) VkFence.Ptr.reinterpret(long newSize) Assume theVkFence.Ptris capable of holding at leastnewSizehandles, create a new viewVkFence.Ptrthat uses the same backing storage as thisVkFence.Ptr, but with the new size.VkFence.Ptr.slice(long end) VkFence.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).