Uses of Record Class
club.doki7.webgpu.datatype.WGPUBufferDescriptor.Ptr
Packages that use WGPUBufferDescriptor.Ptr
-
Uses of WGPUBufferDescriptor.Ptr in club.doki7.webgpu.datatype
Methods in club.doki7.webgpu.datatype that return WGPUBufferDescriptor.PtrModifier and TypeMethodDescriptionstatic WGPUBufferDescriptor.PtrWGPUBufferDescriptor.Ptr.at(long index, @NotNull Consumer<@NotNull WGPUBufferDescriptor> consumer) @NotNull WGPUBufferDescriptor.PtrWGPUBufferDescriptor.Ptr.offset(long offset) @NotNull WGPUBufferDescriptor.PtrWGPUBufferDescriptor.Ptr.reinterpret(long newSize) Assume theWGPUBufferDescriptor.Ptris capable of holding at leastnewSizestructures, create a new viewWGPUBufferDescriptor.Ptrthat uses the same backing storage as thisWGPUBufferDescriptor.Ptr, but with the new size.WGPUBufferDescriptor.Ptr.slice(long end) @NotNull WGPUBufferDescriptor.PtrWGPUBufferDescriptor.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).