diff options
Diffstat (limited to 'components/script/dom/webglquery.rs')
-rw-r--r-- | components/script/dom/webglquery.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/components/script/dom/webglquery.rs b/components/script/dom/webglquery.rs index c971d8442ff..1c890d23760 100644 --- a/components/script/dom/webglquery.rs +++ b/components/script/dom/webglquery.rs @@ -2,6 +2,12 @@ * 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/. */ +use std::cell::Cell; + +use canvas_traits::webgl::WebGLError::*; +use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLQueryId}; +use dom_struct::dom_struct; + use crate::dom::bindings::codegen::Bindings::WebGL2RenderingContextBinding::WebGL2RenderingContextConstants as constants; use crate::dom::bindings::inheritance::Castable; use crate::dom::bindings::refcounted::Trusted; @@ -10,10 +16,6 @@ use crate::dom::bindings::root::DomRoot; use crate::dom::webglobject::WebGLObject; use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext}; use crate::task_source::TaskSource; -use canvas_traits::webgl::WebGLError::*; -use canvas_traits::webgl::{webgl_channel, WebGLCommand, WebGLQueryId}; -use dom_struct::dom_struct; -use std::cell::Cell; #[dom_struct] pub struct WebGLQuery { |