UNPKG

@luma.gl/core

Version:

The luma.gl core Device API

12 lines 437 B
// luma.gl // SPDX-License-Identifier: MIT // Copyright (c) vis.gl contributors import { CanvasSurface } from "./canvas-surface.js"; /** * Manages a renderable backend canvas. Supports both HTML or offscreen canvas * and returns backend framebuffers sourced from the canvas itself. */ export class CanvasContext extends CanvasSurface { static defaultProps = CanvasSurface.defaultProps; } //# sourceMappingURL=canvas-context.js.map