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