menu

GpuMappedBufferRange

import { GpuMappedBufferRange } from "destack:gpu/binding";

GPU mapped buffer range.

language/library/src/gpu/binding/resource.ds:699:706
1export struct GpuMappedBufferRange {2    address: uint64;3    length: uint64;4    coherent: boolean;5}

Members

address: uint64

Host-visible pointer address represented as integer.

length: uint64

Mapped byte length.

coherent: boolean

Whether cache coherence is guaranteed for this mapping.