diff options
Diffstat (limited to 'components/script/dom/gpucomputepipeline.rs')
-rw-r--r-- | components/script/dom/gpucomputepipeline.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/gpucomputepipeline.rs b/components/script/dom/gpucomputepipeline.rs index 604af2373e0..cf325837663 100644 --- a/components/script/dom/gpucomputepipeline.rs +++ b/components/script/dom/gpucomputepipeline.rs @@ -19,7 +19,9 @@ use webgpu::{WebGPUBindGroupLayout, WebGPUComputePipeline}; pub struct GPUComputePipeline { reflector_: Reflector, label: DomRefCell<Option<USVString>>, + #[no_trace] compute_pipeline: WebGPUComputePipeline, + #[no_trace] bind_group_layouts: Vec<WebGPUBindGroupLayout>, device: Dom<GPUDevice>, } |