diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-04-23 11:36:21 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-04-23 11:36:21 -0700 |
commit | c130017c4eab6a75ea7bc8d1e9739498f2444521 (patch) | |
tree | c24e846dd1461396b27d2583b35cc41c762b47c9 | |
parent | 5a56a30886c80daa2e5aaf75012d025fdf56b57b (diff) |
fix gl debug typo
-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 ccdfcb1e..4232f48f 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -1549,7 +1549,7 @@ var LibraryGL = { glLoadMatrixf: function(matrix) { #if GL_DEBUG - console.log('glLoadMatrixf receiving: ' + Array.prototype.slice.call(HEAPF32.subarray(matrix >> 2, (matrix >> 2) + 16)); + console.log('glLoadMatrixf receiving: ' + Array.prototype.slice.call(HEAPF32.subarray(matrix >> 2, (matrix >> 2) + 16))); #endif GL.immediate.matrix.lib.mat4.set(GL.immediate.matrix[GL.immediate.currentMatrix], {{{ makeHEAPView('F32', 'matrix', 'matrix+16*4') }}}); |