UNPKG

lazy-widgets

Version:

Typescript retained mode GUI for the HTML canvas API

12 lines 349 B
export function createBackingCanvas(width, height) { if (window['OffscreenCanvas']) { return new OffscreenCanvas(width, height); } else { const canvas = document.createElement('canvas'); canvas.width = width; canvas.height = height; return canvas; } } //# sourceMappingURL=BackingCanvas.js.map