I am trying to copy the contents of one canvas to another.
The source canvas has a webgl context.
The destination canvas has a 2d context.
My code looks like:
destinationContext.drawImage(sourceCanvas, 0, 0);
This works in Firefox and IE, but it does not work in Chrome. Why not?
Thanks!