diff options
Diffstat (limited to 'components/script/dom/webidls/EXTColorBufferHalfFloat.webidl')
-rw-r--r-- | components/script/dom/webidls/EXTColorBufferHalfFloat.webidl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/components/script/dom/webidls/EXTColorBufferHalfFloat.webidl b/components/script/dom/webidls/EXTColorBufferHalfFloat.webidl new file mode 100644 index 00000000000..77cf23c6cd0 --- /dev/null +++ b/components/script/dom/webidls/EXTColorBufferHalfFloat.webidl @@ -0,0 +1,15 @@ +/* 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 from the Khronos specification: + * https://www.khronos.org/registry/webgl/extensions/EXT_color_buffer_half_float/ + */ + +[NoInterfaceObject, Exposed=Window] +interface EXTColorBufferHalfFloat { + const GLenum RGBA16F_EXT = 0x881A; + const GLenum RGB16F_EXT = 0x881B; + const GLenum FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE_EXT = 0x8211; + const GLenum UNSIGNED_NORMALIZED_EXT = 0x8C17; +}; // interface EXT_color_buffer_half_float |