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 /system | |
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 'system')
-rw-r--r-- | system/include/emscripten.h | 6 |
1 files changed, 6 insertions, 0 deletions
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 |