diff options
Diffstat (limited to 'components/script/dom/gpushadermodule.rs')
-rw-r--r-- | components/script/dom/gpushadermodule.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/components/script/dom/gpushadermodule.rs b/components/script/dom/gpushadermodule.rs index 261f551a27f..745daefaac3 100644 --- a/components/script/dom/gpushadermodule.rs +++ b/components/script/dom/gpushadermodule.rs @@ -52,17 +52,17 @@ impl GPUShaderModule { } impl GPUShaderModuleMethods for GPUShaderModule { - /// https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label + /// <https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label> fn Label(&self) -> USVString { self.label.borrow().clone() } - /// https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label + /// <https://gpuweb.github.io/gpuweb/#dom-gpuobjectbase-label> fn SetLabel(&self, value: USVString) { *self.label.borrow_mut() = value; } - /// https://gpuweb.github.io/gpuweb/#dom-gpushadermodule-getcompilationinfo + /// <https://gpuweb.github.io/gpuweb/#dom-gpushadermodule-getcompilationinfo> fn GetCompilationInfo(&self) -> Fallible<Rc<Promise>> { todo!("Missing in wgpu: https://github.com/gfx-rs/wgpu/issues/2170") } |