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 TypeMethodDescriptionintVkDeviceCommands.allocateDescriptorSets(VkDevice device, VkDescriptorSetAllocateInfo pAllocateInfo, VkDescriptorSet.Ptr pDescriptorSets) voidVkDeviceCommands.cmdBindDescriptorSets(VkCommandBuffer commandBuffer, int pipelineBindPoint, VkPipelineLayout layout, int firstSet, int descriptorSetCount, VkDescriptorSet.Ptr pDescriptorSets, int dynamicOffsetCount, @Nullable IntPtr pDynamicOffsets) intVkDeviceCommands.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.Ptrdoes 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.Ptrstatic VkDescriptorSet.Ptrstatic VkDescriptorSet.PtrVkDescriptorSet.Ptr.allocate(Arena arena, @Nullable VkDescriptorSet @NotNull [] values) static VkDescriptorSet.PtrVkDescriptorSet.Ptr.allocate(Arena arena, @NotNull Collection<@Nullable VkDescriptorSet> values) static VkDescriptorSet.PtrVkDescriptorSet.Ptr.allocateV(Arena arena, @Nullable VkDescriptorSet value0, @Nullable VkDescriptorSet... values) VkDescriptorSet.Ptr.offset(long offset) VkDescriptorSet.Ptr.reinterpret(long newSize) Assume theVkDescriptorSet.Ptris capable of holding at leastnewSizehandles, create a new viewVkDescriptorSet.Ptrthat 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).