diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-10-13 20:21:10 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-10-13 20:21:10 -0700 |
commit | ae7378a008fd3b6e9a7cd46a9a33aba3ffd61eb1 (patch) | |
tree | 23c5f4897c44466793985c50a02dadd35a900cf9 /src/library_gl.js | |
parent | 86c385d577c9615147c2f9ef051da0c5c2c77b7d (diff) |
warn on missing library deps, remove an obsolete VFS dep, and add a necessary glOrtho dep; fixes #1708
Diffstat (limited to 'src/library_gl.js')
-rw-r--r-- | src/library_gl.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index 6e0e04dc..aace0678 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -4470,6 +4470,7 @@ var LibraryGL = { return 1 /* GL_TRUE */; }, + gluOrtho2D__deps: ['glOrtho'], gluOrtho2D: function(left, right, bottom, top) { _glOrtho(left, right, bottom, top, -1, 1); }, |