diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-05-14 11:45:56 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-05-14 11:45:56 -0700 |
commit | cedd11432783d2d1bd336e4c5891d6095e65cfd2 (patch) | |
tree | d64ba2dff5f6a77231d62ce4ffcd3aa962063786 | |
parent | e7b6664aa7c07c8c159386693d1ebba46c2ad717 (diff) |
more glEnable/Disable emulation ignores
-rw-r--r-- | src/library_gl.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index 75672acc..8867a830 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -893,7 +893,9 @@ var LibraryGL = { 0x0B20: 1, // GL_LINE_SMOOTH 0x0B60: 1, // GL_FOG 0x8513: 1, // GL_TEXTURE_CUBE_MAP - 0x0BA1: 1 // GL_NORMALIZE + 0x0BA1: 1, // GL_NORMALIZE + 0x0C60: 1, // GL_TEXTURE_GEN_S + 0x0C61: 1 // GL_TEXTURE_GEN_T }; _glEnable = function(cap) { if (cap in ignoredCapabilities) return; |