diff options
author | Jukka Jylänki <jujjyl@gmail.com> | 2012-06-05 00:23:17 +0300 |
---|---|---|
committer | Jukka Jylänki <jujjyl@gmail.com> | 2012-06-05 00:23:17 +0300 |
commit | c19e66ece36a240d0c49d43f0d2de875a07fe3d8 (patch) | |
tree | 7d0a67413b7e3ba3e5853ede8d661a9d70a05e56 /src | |
parent | 6619a867c06b6e740bc9eaa37479aa10e492266c (diff) |
Added a helper function emscripten_set_canvas_size function which allows to resize the <canvas> element on the web page in 'generic' fashion without having to depend on SDL or X11 headers in C code. This function is intended to be used in conjunction with EGL to specify a custom pixel resolution for the canvas (EGL API does not have expressiveness to do arbitrary pixel sizes).
Diffstat (limited to 'src')
-rw-r--r-- | src/library_browser.js | 5 |
1 files changed, 5 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'](); |