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.Ptrdoes 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.Ptrstatic WGPUBuffer.Ptrstatic WGPUBuffer.PtrWGPUBuffer.Ptr.allocate(Arena arena, @Nullable WGPUBuffer @NotNull [] values) static WGPUBuffer.PtrWGPUBuffer.Ptr.allocate(Arena arena, @NotNull Collection<@Nullable WGPUBuffer> values) static WGPUBuffer.PtrWGPUBuffer.Ptr.allocateV(Arena arena, @Nullable WGPUBuffer value0, @Nullable WGPUBuffer... values) WGPUBuffer.Ptr.offset(long offset) WGPUBuffer.Ptr.reinterpret(long newSize) Assume theWGPUBuffer.Ptris capable of holding at leastnewSizehandles, create a new viewWGPUBuffer.Ptrthat 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).