diff options
author | juj <jujjyl@gmail.com> | 2014-03-16 17:50:13 +0200 |
---|---|---|
committer | juj <jujjyl@gmail.com> | 2014-03-16 17:50:13 +0200 |
commit | a0402f5e7f54543ff2c6e5c0bb8029055ac8c6eb (patch) | |
tree | 93453f709e25cd4439766a9c7177ef7d416b70bd /src | |
parent | f38cc417d74f3050b5851b1221976ae079b1fe57 (diff) | |
parent | f6a6754cafac87f2ad6765679bf44c2ea7dbea96 (diff) |
Merge pull request #2229 from Daft-Freak/patch-2
Add eglWaitGL
Diffstat (limited to 'src')
-rw-r--r-- | src/library_egl.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/library_egl.js b/src/library_egl.js index e2d1df43..46ec939e 100644 --- a/src/library_egl.js +++ b/src/library_egl.js @@ -492,7 +492,11 @@ var LibraryEGL = { EGL.setErrorCode(0x3000 /* EGL_SUCCESS */); return 1; }, - + + + // EGLAPI EGLBoolean EGLAPIENTRY eglWaitGL(void); + eglWaitGL: 'eglWaitClient', + // EGLAPI EGLBoolean EGLAPIENTRY eglSwapInterval(EGLDisplay dpy, EGLint interval); eglSwapInterval: function(display, interval) { if (display != 62000 /* Magic ID for Emscripten 'default display' */) { |