diff options
Diffstat (limited to 'components/script/dom/gpubuffer.rs')
-rw-r--r-- | components/script/dom/gpubuffer.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/components/script/dom/gpubuffer.rs b/components/script/dom/gpubuffer.rs index 83dd27b47d9..0d528812a96 100644 --- a/components/script/dom/gpubuffer.rs +++ b/components/script/dom/gpubuffer.rs @@ -59,9 +59,11 @@ pub struct GPUBufferMapInfo { pub struct GPUBuffer { reflector_: Reflector, #[ignore_malloc_size_of = "defined in webgpu"] + #[no_trace] channel: WebGPU, label: DomRefCell<Option<USVString>>, state: Cell<GPUBufferState>, + #[no_trace] buffer: WebGPUBuffer, device: Dom<GPUDevice>, size: GPUSize64, |