UNPKG

@luma.gl/core

Version:

The luma.gl core Device API

12 lines 436 B
// luma.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import { CanvasSurface } from "./canvas-surface.js"; /** * Tracks a destination canvas for presentation. * Backend implementations either borrow the default GPU-backed canvas (WebGL) * or render directly into the destination canvas (WebGPU). */ export class PresentationContext extends CanvasSurface { } //# sourceMappingURL=presentation-context.js.map