diff options
-rw-r--r-- | src/library_browser.js | 5 | ||||
-rw-r--r-- | system/include/emscripten.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/src/library_browser.js b/src/library_browser.js index e9860742..efb9e444 100644 --- a/src/library_browser.js +++ b/src/library_browser.js @@ -244,6 +244,11 @@ mergeInto(LibraryManager.library, { styleSheet.insertRule('canvas.emscripten { border: 1px solid black; cursor: none; }', 0); }, + emscripten_set_canvas_size: function(width, height) { + Module['canvas'].width = width; + Module['canvas'].height = height; + }, + emscripten_get_now: function() { if (window['performance'] && window['performance']['now']) { return window['performance']['now'](); diff --git a/system/include/emscripten.h b/system/include/emscripten.h index d0e6cc46..4da31ec3 100644 --- a/system/include/emscripten.h +++ b/system/include/emscripten.h @@ -65,6 +65,12 @@ void emscripten_async_call(void (*func)(), int millis) { void emscripten_hide_mouse(); /* + * Resizes the pixel width and height of the <canvas> element + * on the Emscripten web page. + */ +void emscripten_set_canvas_size(int width, int height); + +/* * Returns the highest-precision representation of the * current time that the browser provides. This uses either * Date.now or performance.now. The result is *not* an |