VideoContext
VideoContext copied to clipboard
Unhandled Rejection (TypeError): 2 is not a valid argument count for any overload of Window.createImageBitmap
The following error message occurs when using Firefox 74.0.1 (64-bit):

It seems to be caused by using the following:
const node = this.videoContext.image("/blank.png");
As a workaround I am able to do the following successfully:
window.createImageBitmap = null;
const node = this.videoContext.image("/blank.png");