aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/vertexarrayobject.rs
diff options
context:
space:
mode:
Diffstat (limited to 'components/script/dom/vertexarrayobject.rs')
-rw-r--r--components/script/dom/vertexarrayobject.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/vertexarrayobject.rs b/components/script/dom/vertexarrayobject.rs
index 4021fe49e5f..a7f39cb7a46 100644
--- a/components/script/dom/vertexarrayobject.rs
+++ b/components/script/dom/vertexarrayobject.rs
@@ -16,7 +16,7 @@ use crate::dom::webglbuffer::WebGLBuffer;
use crate::dom::webglrenderingcontext::{Operation, WebGLRenderingContext};
#[derive(JSTraceable, MallocSizeOf)]
-#[unrooted_must_root_lint::must_root]
+#[crown::unrooted_must_root_lint::must_root]
pub struct VertexArrayObject {
context: Dom<WebGLRenderingContext>,
#[no_trace]
@@ -264,7 +264,7 @@ impl Drop for VertexArrayObject {
}
#[derive(Clone, JSTraceable, MallocSizeOf)]
-#[unrooted_must_root_lint::must_root]
+#[crown::unrooted_must_root_lint::must_root]
pub struct VertexAttribData {
pub enabled_as_array: bool,
pub size: u8,
@@ -278,7 +278,7 @@ pub struct VertexAttribData {
}
impl Default for VertexAttribData {
- #[allow(unrooted_must_root)]
+ #[allow(crown::unrooted_must_root)]
fn default() -> Self {
Self {
enabled_as_array: false,