diff options
author | David Zbarsky <dzbarsky@gmail.com> | 2015-12-15 20:43:38 -0800 |
---|---|---|
committer | David Zbarsky <dzbarsky@gmail.com> | 2015-12-15 20:43:38 -0800 |
commit | 6a72d4dd128f18c5ff027f363fed51a7fad4531c (patch) | |
tree | 3b521639b1f87b22163cbb6e77fa91243b9af0ac /components/script/dom/webidls | |
parent | 59a354427923f1c4febd9b8bcd6692900aa10f98 (diff) | |
download | servo-6a72d4dd128f18c5ff027f363fed51a7fad4531c.tar.gz servo-6a72d4dd128f18c5ff027f363fed51a7fad4531c.zip |
Implement WebGL scissor method
Diffstat (limited to 'components/script/dom/webidls')
-rw-r--r-- | components/script/dom/webidls/WebGLRenderingContext.webidl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/webidls/WebGLRenderingContext.webidl b/components/script/dom/webidls/WebGLRenderingContext.webidl index 6e9e2d19626..c2c82b5ff17 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -618,7 +618,7 @@ interface WebGLRenderingContextBase //void renderbufferStorage(GLenum target, GLenum internalformat, // GLsizei width, GLsizei height); //void sampleCoverage(GLclampf value, GLboolean invert); - //void scissor(GLint x, GLint y, GLsizei width, GLsizei height); + void scissor(GLint x, GLint y, GLsizei width, GLsizei height); void shaderSource(WebGLShader? shader, DOMString source); |