Uses of Record Class
club.doki7.webgpu.handle.WGPUBuffer.Ptr
Packages that use WGPUBuffer.Ptr
-
Uses of WGPUBuffer.Ptr in club.doki7.webgpu.datatype
Methods in club.doki7.webgpu.datatype that return WGPUBuffer.PtrModifier and TypeMethodDescriptionWGPUBindGroupEntryExtras.buffers()
Note: the returnedWGPUBuffer.Ptr
does not have correctsize()
property.Methods in club.doki7.webgpu.datatype with parameters of type WGPUBuffer.Ptr -
Uses of WGPUBuffer.Ptr in club.doki7.webgpu.handle
Methods in club.doki7.webgpu.handle that return WGPUBuffer.PtrModifier and TypeMethodDescriptionstatic WGPUBuffer.Ptr
static WGPUBuffer.Ptr
static WGPUBuffer.Ptr
WGPUBuffer.Ptr.allocate
(Arena arena, @Nullable WGPUBuffer @NotNull [] values) static WGPUBuffer.Ptr
WGPUBuffer.Ptr.allocate
(Arena arena, @NotNull Collection<@Nullable WGPUBuffer> values) static WGPUBuffer.Ptr
WGPUBuffer.Ptr.allocateV
(Arena arena, @Nullable WGPUBuffer value0, @Nullable WGPUBuffer... values) WGPUBuffer.Ptr.offset
(long offset) WGPUBuffer.Ptr.reinterpret
(long newSize) Assume theWGPUBuffer.Ptr
is capable of holding at leastnewSize
handles, create a new viewWGPUBuffer.Ptr
that uses the same backing storage as thisWGPUBuffer.Ptr
, but with the new size.WGPUBuffer.Ptr.slice
(long end) WGPUBuffer.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).