mirror of
https://github.com/kkapsner/CanvasBlocker
synced 2024-12-22 21:00:23 +01:00
Added support for webgl2 (?)
This commit is contained in:
parent
0640008459
commit
5fe5ec1d64
Binary file not shown.
@ -13,7 +13,11 @@
|
|||||||
source = imageData.data;
|
source = imageData.data;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
context = window.HTMLCanvasElement.prototype.getContext.call(original, "webgl");
|
context =
|
||||||
|
window.HTMLCanvasElement.prototype.getContext.call(original, "webgl") ||
|
||||||
|
window.HTMLCanvasElement.prototype.getContext.call(original, "experimental-webgl") ||
|
||||||
|
window.HTMLCanvasElement.prototype.getContext.call(original, "webgl2") ||
|
||||||
|
window.HTMLCanvasElement.prototype.getContext.call(original, "experimental-webgl2");
|
||||||
imageData = new window.wrappedJSObject.ImageData(original.width, original.height);
|
imageData = new window.wrappedJSObject.ImageData(original.width, original.height);
|
||||||
source = new window.wrappedJSObject.Uint8Array(imageData.data.length);
|
source = new window.wrappedJSObject.Uint8Array(imageData.data.length);
|
||||||
window.WebGLRenderingContext.prototype.readPixels.call(
|
window.WebGLRenderingContext.prototype.readPixels.call(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user