Uses of Record Class
club.doki7.vulkan.handle.VkBufferView.Ptr
Packages that use VkBufferView.Ptr
Package
Description
Vulkan API commands
Structure (
struct
or union
) types of Vulkan API.Opaque handle types of Vulkan API.
-
Uses of VkBufferView.Ptr in club.doki7.vulkan.command
Methods in club.doki7.vulkan.command with parameters of type VkBufferView.PtrModifier and TypeMethodDescriptionint
VkDeviceCommands.createBufferView
(VkDevice device, VkBufferViewCreateInfo pCreateInfo, @Nullable VkAllocationCallbacks pAllocator, VkBufferView.Ptr pView) -
Uses of VkBufferView.Ptr in club.doki7.vulkan.datatype
Methods in club.doki7.vulkan.datatype that return VkBufferView.PtrModifier and TypeMethodDescriptionVkWriteDescriptorSet.pTexelBufferView()
Note: the returnedVkBufferView.Ptr
does not have correctsize()
property.Methods in club.doki7.vulkan.datatype with parameters of type VkBufferView.Ptr -
Uses of VkBufferView.Ptr in club.doki7.vulkan.handle
Methods in club.doki7.vulkan.handle that return VkBufferView.PtrModifier and TypeMethodDescriptionstatic VkBufferView.Ptr
static VkBufferView.Ptr
static VkBufferView.Ptr
VkBufferView.Ptr.allocate
(Arena arena, @Nullable VkBufferView[] values) static VkBufferView.Ptr
VkBufferView.Ptr.allocateV
(Arena arena, @Nullable VkBufferView value0, @Nullable VkBufferView... values) VkBufferView.Ptr.offset
(long offset) VkBufferView.Ptr.reinterpret
(long newSize) Assume theVkBufferView.Ptr
is capable of holding at leastnewSize
handles, create a new viewVkBufferView.Ptr
that uses the same backing storage as thisVkBufferView.Ptr
, but with the new size.VkBufferView.Ptr.slice
(long end) VkBufferView.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).