Uses of Record Class
club.doki7.vulkan.handle.VkDescriptorSet.Ptr
Packages that use VkDescriptorSet.Ptr
Package
Description
Vulkan API commands
Structure (
struct
or union
) types of Vulkan API.Opaque handle types of Vulkan API.
-
Uses of VkDescriptorSet.Ptr in club.doki7.vulkan.command
Methods in club.doki7.vulkan.command with parameters of type VkDescriptorSet.PtrModifier and TypeMethodDescriptionint
VkDeviceCommands.allocateDescriptorSets
(VkDevice device, VkDescriptorSetAllocateInfo pAllocateInfo, VkDescriptorSet.Ptr pDescriptorSets) void
VkDeviceCommands.cmdBindDescriptorSets
(VkCommandBuffer commandBuffer, int pipelineBindPoint, VkPipelineLayout layout, int firstSet, int descriptorSetCount, VkDescriptorSet.Ptr pDescriptorSets, int dynamicOffsetCount, @Nullable IntPtr pDynamicOffsets) int
VkDeviceCommands.freeDescriptorSets
(VkDevice device, VkDescriptorPool descriptorPool, int descriptorSetCount, VkDescriptorSet.Ptr pDescriptorSets) -
Uses of VkDescriptorSet.Ptr in club.doki7.vulkan.datatype
Methods in club.doki7.vulkan.datatype that return VkDescriptorSet.PtrModifier and TypeMethodDescriptionVkBindDescriptorSetsInfo.pDescriptorSets()
Note: the returnedVkDescriptorSet.Ptr
does not have correctsize()
property.Methods in club.doki7.vulkan.datatype with parameters of type VkDescriptorSet.PtrModifier and TypeMethodDescriptionVkBindDescriptorSetsInfo.pDescriptorSets
(VkDescriptorSet.Ptr value) -
Uses of VkDescriptorSet.Ptr in club.doki7.vulkan.handle
Methods in club.doki7.vulkan.handle that return VkDescriptorSet.PtrModifier and TypeMethodDescriptionstatic VkDescriptorSet.Ptr
static VkDescriptorSet.Ptr
static VkDescriptorSet.Ptr
VkDescriptorSet.Ptr.allocate
(Arena arena, @Nullable VkDescriptorSet @NotNull [] values) static VkDescriptorSet.Ptr
VkDescriptorSet.Ptr.allocate
(Arena arena, @NotNull Collection<@Nullable VkDescriptorSet> values) static VkDescriptorSet.Ptr
VkDescriptorSet.Ptr.allocateV
(Arena arena, @Nullable VkDescriptorSet value0, @Nullable VkDescriptorSet... values) VkDescriptorSet.Ptr.offset
(long offset) VkDescriptorSet.Ptr.reinterpret
(long newSize) Assume theVkDescriptorSet.Ptr
is capable of holding at leastnewSize
handles, create a new viewVkDescriptorSet.Ptr
that uses the same backing storage as thisVkDescriptorSet.Ptr
, but with the new size.VkDescriptorSet.Ptr.slice
(long end) VkDescriptorSet.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).