diff options
author | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 16:05:04 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2014-06-12 16:05:04 -0700 |
commit | 7f0a06540bc591946aa5bab0c1068baa0782afe9 (patch) | |
tree | 225932b71ac3a35fb2e67a667df11c9635864188 /src/proxyWorker.js | |
parent | 67c05b0b515907ac9b08a1e10904da450320714f (diff) |
proxy context attributes
Diffstat (limited to 'src/proxyWorker.js')
-rw-r--r-- | src/proxyWorker.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/proxyWorker.js b/src/proxyWorker.js index 820f0a34..dd572dad 100644 --- a/src/proxyWorker.js +++ b/src/proxyWorker.js @@ -56,8 +56,8 @@ document.createElement = function document_createElement(what) { postMessage({ target: 'canvas', op: 'resize', width: canvas.width, height: canvas.height }); } }; - canvas.getContext = function canvas_getContext(type) { - postMessage({ target: 'canvas', op: 'getContext', type: type }); + canvas.getContext = function canvas_getContext(type, attributes) { + postMessage({ target: 'canvas', op: 'getContext', type: type, attributes: attributes }); if (type === '2d') { return { getImageData: function(x, y, w, h) { |