diff options
author | Mátyás Mustoha <matyas.mustoha@h-lab.eu> | 2019-10-04 11:22:07 +0200 |
---|---|---|
committer | Mátyás Mustoha <matyas.mustoha@h-lab.eu> | 2019-10-08 16:21:43 +0200 |
commit | 26df1962c38421251a998b8acc7d6652116d4866 (patch) | |
tree | d7d62618d2799ce5d0b36f0a1a816bd83fbfa7d9 /components/script/dom/webidls/WebGLSampler.webidl | |
parent | 78438113d4ee6838c1f630f4ac0cdb2b157e8781 (diff) | |
download | servo-26df1962c38421251a998b8acc7d6652116d4866.tar.gz servo-26df1962c38421251a998b8acc7d6652116d4866.zip |
Add WebGLSampler support
Reference: https://www.khronos.org/registry/webgl/specs/latest/2.0/#3.7.13
Diffstat (limited to 'components/script/dom/webidls/WebGLSampler.webidl')
-rw-r--r-- | components/script/dom/webidls/WebGLSampler.webidl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/components/script/dom/webidls/WebGLSampler.webidl b/components/script/dom/webidls/WebGLSampler.webidl new file mode 100644 index 00000000000..90c66b65a1d --- /dev/null +++ b/components/script/dom/webidls/WebGLSampler.webidl @@ -0,0 +1,11 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at https://mozilla.org/MPL/2.0/. */ +// +// WebGL IDL definitions scraped from the Khronos specification: +// https://www.khronos.org/registry/webgl/specs/latest/1.0/#5.8 +// + +[Exposed=Window, Pref="dom.webgl2.enabled"] +interface WebGLSampler : WebGLObject { +}; |