diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2018-07-18 18:22:15 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-07-18 21:37:41 +0200 |
commit | 3e8c2d659aa7c1a28971a6c15d16a57259e674a3 (patch) | |
tree | ba3595a19446c31352e9fc3fda4519e2314c2c42 /components/script/dom/webidls/WebGLRenderingContext.webidl | |
parent | 20714bd08cc83500a52e939c21eb9ed56d46373e (diff) | |
download | servo-3e8c2d659aa7c1a28971a6c15d16a57259e674a3.tar.gz servo-3e8c2d659aa7c1a28971a6c15d16a57259e674a3.zip |
Implement gl.getUniform()
Diffstat (limited to 'components/script/dom/webidls/WebGLRenderingContext.webidl')
-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 82769410062..d36154c7355 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -580,7 +580,7 @@ interface WebGLRenderingContextBase any getTexParameter(GLenum target, GLenum pname); - // any getUniform(WebGLProgram program, WebGLUniformLocation location); + any getUniform(WebGLProgram program, WebGLUniformLocation location); WebGLUniformLocation? getUniformLocation(WebGLProgram program, DOMString name); |