web api instance property
GPUCanvasContext: canvas property
Secure contextAvailable in workers
The canvas read-only property of the
GPUCanvasContext interface returns a reference to the canvas that the context was created from.
Value
An HTMLCanvasElement or OffscreenCanvas object instance.
Examples
const canvas = document.querySelector("#gpuCanvas");
const context = canvas.getContext("webgpu");
// returns an HTMLCanvasElement reference
context.canvas;
Specifications
SpecificationsStandards references are available on the canonical MDN page.
Browser compatibility
Browser compatibilityCompatibility data is available on the canonical MDN page.
See also
- The WebGPU API