diff options
author | Antoine Lambert <antoine-e.lambert@thalesgroup.com> | 2013-10-24 10:32:41 +0200 |
---|---|---|
committer | Antoine Lambert <antoine-e.lambert@thalesgroup.com> | 2013-10-24 10:32:41 +0200 |
commit | 3263031d4d8abfd11c4173953d942509bc782b81 (patch) | |
tree | 630d02c395dfb162e86f253fbfe60aea34835a16 | |
parent | 50ee300ffabb6c5e5c6a2d4b4762343822ea1dc2 (diff) |
map depth and stencil buffers activation from GLUT to WebGL
-rw-r--r-- | src/library_glut.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/library_glut.js b/src/library_glut.js index 722ea85c..fefe7bd3 100644 --- a/src/library_glut.js +++ b/src/library_glut.js @@ -427,7 +427,9 @@ var LibraryGLUT = { glutCreateWindow__deps: ['$Browser'], glutCreateWindow: function(name) { var contextAttributes = { - antialias: ((GLUT.initDisplayMode & 0x0080 /*GLUT_MULTISAMPLE*/) != 0) + antialias: ((GLUT.initDisplayMode & 0x0080 /*GLUT_MULTISAMPLE*/) != 0), + depth: ((GLUT.initDisplayMode & 0x0010 /*GLUT_DEPTH*/) != 0), + stencil: ((GLUT.initDisplayMode & 0x0020 /*GLUT_STENCIL*/) != 0) }; Module.ctx = Browser.createContext(Module['canvas'], true, true, contextAttributes); return Module.ctx ? 1 /* a new GLUT window ID for the created context */ : 0 /* failure */; |