diff options
author | Igor Gutorov <igootorov@gmail.com> | 2018-03-14 20:41:36 +0200 |
---|---|---|
committer | Igor Gutorov <igootorov@gmail.com> | 2018-03-22 18:26:18 +0200 |
commit | ee5bdbbd8b99b58eda19c117b1a06e4a90a61bb1 (patch) | |
tree | f4c3a2dcc85b6e576ddaaa585210bc293ffbff6c /components/script/dom/webidls/WebGLRenderingContext.webidl | |
parent | f92f0809f89593d4b70eb0f507f6ca4409c9ed91 (diff) | |
download | servo-ee5bdbbd8b99b58eda19c117b1a06e4a90a61bb1.tar.gz servo-ee5bdbbd8b99b58eda19c117b1a06e4a90a61bb1.zip |
Implement WebGL getFramebufferAttachmentParameter API
Diffstat (limited to 'components/script/dom/webidls/WebGLRenderingContext.webidl')
-rw-r--r-- | components/script/dom/webidls/WebGLRenderingContext.webidl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/webidls/WebGLRenderingContext.webidl b/components/script/dom/webidls/WebGLRenderingContext.webidl index 3f845126701..05e9212d974 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -589,8 +589,8 @@ interface WebGLRenderingContextBase [WebGLHandlesContextLoss] GLenum getError(); - //any getFramebufferAttachmentParameter(GLenum target, GLenum attachment, - // GLenum pname); + any getFramebufferAttachmentParameter(GLenum target, GLenum attachment, + GLenum pname); any getProgramParameter(WebGLProgram? program, GLenum pname); DOMString? getProgramInfoLog(WebGLProgram? program); //any getRenderbufferParameter(GLenum target, GLenum pname); |