diff options
author | Josh Matthews <josh@joshmatthews.net> | 2018-09-10 12:10:27 -0400 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2018-11-05 14:13:46 +0100 |
commit | e31462c37c2305a8e88e5d27901299ff76d7a853 (patch) | |
tree | c2b653ca3a72e5ef8f215d54e3e6f2b873714848 /components/script/dom/webgl_extensions/ext/mod.rs | |
parent | 176d984b3badba7265f3e7442159adcb54d8b90e (diff) | |
download | servo-e31462c37c2305a8e88e5d27901299ff76d7a853.tar.gz servo-e31462c37c2305a8e88e5d27901299ff76d7a853.zip |
Implement WEBGL_color_buffer_float and EXT_color_buffer_half_float (fixes #22113)
Diffstat (limited to 'components/script/dom/webgl_extensions/ext/mod.rs')
-rw-r--r-- | components/script/dom/webgl_extensions/ext/mod.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/webgl_extensions/ext/mod.rs b/components/script/dom/webgl_extensions/ext/mod.rs index 62f75cb048a..d1a82c24756 100644 --- a/components/script/dom/webgl_extensions/ext/mod.rs +++ b/components/script/dom/webgl_extensions/ext/mod.rs @@ -7,6 +7,7 @@ use super::{ext_constants, WebGLExtension, WebGLExtensions, WebGLExtensionSpec}; pub mod angleinstancedarrays; pub mod extblendminmax; +pub mod extcolorbufferhalffloat; pub mod extshadertexturelod; pub mod exttexturefilteranisotropic; pub mod oeselementindexuint; @@ -16,3 +17,4 @@ pub mod oestexturefloatlinear; pub mod oestexturehalffloat; pub mod oestexturehalffloatlinear; pub mod oesvertexarrayobject; +pub mod webglcolorbufferfloat; |