diff options
Diffstat (limited to 'components/script/dom/webgpu/gpurenderpipeline.rs')
-rw-r--r-- | components/script/dom/webgpu/gpurenderpipeline.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/webgpu/gpurenderpipeline.rs b/components/script/dom/webgpu/gpurenderpipeline.rs index 48f6d93bc01..21230ff6899 100644 --- a/components/script/dom/webgpu/gpurenderpipeline.rs +++ b/components/script/dom/webgpu/gpurenderpipeline.rs @@ -16,6 +16,7 @@ use crate::dom::bindings::str::USVString; use crate::dom::globalscope::GlobalScope; use crate::dom::webgpu::gpubindgrouplayout::GPUBindGroupLayout; use crate::dom::webgpu::gpudevice::{GPUDevice, PipelineLayout}; +use crate::script_runtime::CanGc; #[dom_struct] pub struct GPURenderPipeline { @@ -57,6 +58,7 @@ impl GPURenderPipeline { device, )), global, + CanGc::note(), ) } } |