diff options
author | Alon Zakai <alonzakai@gmail.com> | 2011-05-17 18:18:47 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2011-05-17 18:18:47 -0700 |
commit | a5d0e839eed60318bdd119e3dcdf8ce94d6d6ec4 (patch) | |
tree | 1d2f61a3aeb1923a5ea1005277e02391fef83d28 | |
parent | 1070e6fd706cadfda3b2c808aaad98d4202b233d (diff) |
gl stuff
-rw-r--r-- | src/library_gl.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index 45fc8585..185494c6 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -67,7 +67,7 @@ var LibraryGL = { }; // Ignored stubs for fixed-function pipeline. We will need to emulate this -'begin end matrixMode loadIdentity ortho color3f texCoord2f vertex2f blendFunc pushMatrix popMatrix translatef scalef'.split(' ').forEach(function(name_) { +'begin end matrixMode loadIdentity ortho color3f texCoord2f vertex2f blendFunc pushMatrix popMatrix translatef scalef color4ub enableClientState disableClientState vertexPointer colorPointer normalPointer texCoordPointer drawArrays clientActiveTexture_'.split(' ').forEach(function(name_) { var cName = 'gl' + name_[0].toUpperCase() + name_.substr(1); LibraryGL[cName] = function(){}; }); |