diff options
Diffstat (limited to 'components/script/dom/webgluniformlocation.rs')
-rw-r--r-- | components/script/dom/webgluniformlocation.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/webgluniformlocation.rs b/components/script/dom/webgluniformlocation.rs index 153b2e651ba..a579743399b 100644 --- a/components/script/dom/webgluniformlocation.rs +++ b/components/script/dom/webgluniformlocation.rs @@ -14,7 +14,9 @@ use dom_struct::dom_struct; pub struct WebGLUniformLocation { reflector_: Reflector, id: i32, + #[no_trace] context_id: WebGLContextId, + #[no_trace] program_id: WebGLProgramId, link_generation: u64, size: Option<i32>, |