oframe / ogl

Minimal WebGL Library
https://oframe.github.io/ogl/examples
3.61k stars 206 forks source link

HTMLCanvasElement missing from ImageRepresentation #210

Closed hansagames closed 2 months ago

hansagames commented 2 months ago

Hi,

I think we should add HTMLCanvasElement[] and HTMLCanvasElement to ImageRepresentation as possible types.

export type ImageRepresentation =
    | HTMLImageElement
    | HTMLVideoElement
    | HTMLImageElement[]
    | ArrayBufferView
    | CompressedImage;
pschroen commented 2 months ago

HTMLCanvasElement was just added in #198 though I'll also add HTMLCanvasElement[], assuming that should work.