diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-03 12:08:57 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-03 12:08:57 -0800 |
commit | baa83f6f205ed9634664ec9fb369c8984454ad32 (patch) | |
tree | 1b7ffdebb11c55f363bbd1719a661b28fc681f33 /src | |
parent | 205d1f08541b5fc6f4c667b5d8064806319a13af (diff) | |
parent | 8610a48812236b830ed80d3bf06334ced69478dd (diff) |
Merge pull request #1891 from onnoj/incoming
Fixed glSampleCoverage signature (vi to vii)
Diffstat (limited to 'src')
-rw-r--r-- | src/library_gl.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/library_gl.js b/src/library_gl.js index d2851211..cc39b048 100644 --- a/src/library_gl.js +++ b/src/library_gl.js @@ -4984,14 +4984,14 @@ var LibraryGL = { glClearColor__sig: 'viiii', glIsEnabled__sig: 'ii', glFrontFace__sig: 'vi', - glSampleCoverage__sig: 'vi', + glSampleCoverage__sig: 'vii', }; // Simple pass-through functions. Starred ones have return values. [X] ones have X in the C name but not in the JS name [[0, 'finish flush'], - [1, 'clearDepth clearDepth[f] depthFunc enable disable frontFace cullFace clear lineWidth clearStencil depthMask stencilMask checkFramebufferStatus* generateMipmap activeTexture blendEquation sampleCoverage isEnabled*'], - [2, 'blendFunc blendEquationSeparate depthRange depthRange[f] stencilMaskSeparate hint polygonOffset vertexAttrib1f'], + [1, 'clearDepth clearDepth[f] depthFunc enable disable frontFace cullFace clear lineWidth clearStencil depthMask stencilMask checkFramebufferStatus* generateMipmap activeTexture blendEquation isEnabled*'], + [2, 'blendFunc blendEquationSeparate depthRange depthRange[f] stencilMaskSeparate hint polygonOffset vertexAttrib1f sampleCoverage'], [3, 'texParameteri texParameterf vertexAttrib2f stencilFunc stencilOp'], [4, 'viewport clearColor scissor vertexAttrib3f colorMask renderbufferStorage blendFuncSeparate blendColor stencilFuncSeparate stencilOpSeparate'], [5, 'vertexAttrib4f'], |