microsoft / HoloJS

Provides a framework for creating holographic apps using JavaScript and WebGL.
MIT License
1.19k stars 114 forks source link

createImageData not supported #162

Closed khalilkhalil25 closed 5 years ago

khalilkhalil25 commented 6 years ago

Hi,

I am trying to call createImageData on a CanvasRenderingContext2D but I'm getting the following:

TypeError: Object doesn't support property or method 'createImageData'

It seems it hasn't been implemented.

Almost-Done commented 6 years ago

That's correct, createImageData and putImageData are not implemented. Meanwhile, maybe you can make do with getImageData and drawImage?

khalilkhalil25 commented 6 years ago

OK noted, I'll try to make due with getImageData and drawImage, Thank you.