diff options
author | Ar13mis <kingtut5474@gmail.com> | 2016-04-04 16:00:22 -0600 |
---|---|---|
committer | Ar13mis <kingtut5474@gmail.com> | 2016-04-04 16:00:22 -0600 |
commit | 86b1f4249a0ddfa33d380d11d7eae76cdcb1a193 (patch) | |
tree | e68777bb84ef1eaa8ef8a1fbd7dbf5b60fd4e6ef /components/script/dom/webidls | |
parent | b568b72d760623462fe1a19544e1ad59f98e4480 (diff) | |
download | servo-86b1f4249a0ddfa33d380d11d7eae76cdcb1a193.tar.gz servo-86b1f4249a0ddfa33d380d11d7eae76cdcb1a193.zip |
Add Uniform2f
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 94537ef30dc..9e4a1d1aea0 100644 --- a/components/script/dom/webidls/WebGLRenderingContext.webidl +++ b/components/script/dom/webidls/WebGLRenderingContext.webidl @@ -650,7 +650,7 @@ interface WebGLRenderingContextBase void uniform1i(WebGLUniformLocation? location, GLint x); //void uniform1iv(WebGLUniformLocation? location, Int32Array v); //void uniform1iv(WebGLUniformLocation? location, sequence<long> v); - //void uniform2f(WebGLUniformLocation? location, GLfloat x, GLfloat y); + void uniform2f(WebGLUniformLocation? location, GLfloat x, GLfloat y); //void uniform2fv(WebGLUniformLocation? location, Float32Array v); //void uniform2fv(WebGLUniformLocation? location, sequence<GLfloat> v); //void uniform2i(WebGLUniformLocation? location, GLint x, GLint y); |