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 TypeMethodDescriptionint
VkDeviceCommands.createFence
(VkDevice device, VkFenceCreateInfo pCreateInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) int
VkDeviceCommands.registerDeviceEventEXT
(VkDevice device, VkDeviceEventInfoEXT pDeviceEventInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) int
VkDeviceCommands.registerDisplayEventEXT
(VkDevice device, VkDisplayKHR display, VkDisplayEventInfoEXT pDisplayEventInfo, @Nullable VkAllocationCallbacks pAllocator, VkFence.Ptr pFence) int
VkDeviceCommands.resetFences
(VkDevice device, int fenceCount, VkFence.Ptr pFences) int
VkDeviceCommands.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.Ptr
does 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.Ptr
static VkFence.Ptr
static VkFence.Ptr
static VkFence.Ptr
VkFence.Ptr.offset
(long offset) VkFence.Ptr.reinterpret
(long newSize) Assume theVkFence.Ptr
is capable of holding at leastnewSize
handles, create a new viewVkFence.Ptr
that 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).