aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/webgl_extensions/ext/mod.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2018-07-08 04:45:37 -0400
committerGitHub <noreply@github.com>2018-07-08 04:45:37 -0400
commit41e105733c594a5660efa018cbb61a5ed67cb82d (patch)
tree015a2bda96856c4104139592c926c3e1b17be8f9 /components/script/dom/webgl_extensions/ext/mod.rs
parentbd0c001218fcb624953aa42805f4faec9b6d3212 (diff)
parent4e6eea221a19b3e5a4b70f5954b3347bb6db02d1 (diff)
downloadservo-41e105733c594a5660efa018cbb61a5ed67cb82d.tar.gz
servo-41e105733c594a5660efa018cbb61a5ed67cb82d.zip
Auto merge of #21129 - servo:webgl, r=emilio
Implement instanced WebGL drawing calls (part of #20791) This is half of #20599. The check for drawElements is a bit more complex to implement. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21129) <!-- Reviewable:end -->
Diffstat (limited to 'components/script/dom/webgl_extensions/ext/mod.rs')
-rw-r--r--components/script/dom/webgl_extensions/ext/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webgl_extensions/ext/mod.rs b/components/script/dom/webgl_extensions/ext/mod.rs
index bdf19d5327a..62f75cb048a 100644
--- a/components/script/dom/webgl_extensions/ext/mod.rs
+++ b/components/script/dom/webgl_extensions/ext/mod.rs
@@ -5,6 +5,7 @@
use dom::bindings::codegen::Bindings::WebGLRenderingContextBinding::WebGLRenderingContextConstants as constants;
use super::{ext_constants, WebGLExtension, WebGLExtensions, WebGLExtensionSpec};
+pub mod angleinstancedarrays;
pub mod extblendminmax;
pub mod extshadertexturelod;
pub mod exttexturefilteranisotropic;