aboutsummaryrefslogtreecommitdiffstats
path: root/components/script/dom/gpushadermodule.rs
diff options
context:
space:
mode:
authorSamson <16504129+sagudev@users.noreply.github.com>2023-12-28 18:32:21 +0100
committerGitHub <noreply@github.com>2023-12-28 17:32:21 +0000
commite79171ec01199ba7100c0ad90576a6ec5705d80c (patch)
tree394f0dea6265baccb35245a96a5b4476c8669744 /components/script/dom/gpushadermodule.rs
parent90a25ab2e1344e13bf58c0dcab3ce5e9b58f3572 (diff)
downloadservo-e79171ec01199ba7100c0ad90576a6ec5705d80c.tar.gz
servo-e79171ec01199ba7100c0ad90576a6ec5705d80c.zip
Update WebGPU CTS (#30954)
* Update WebGPU CTS to https://github.com/gpuweb/cts/commit/ae15a59832989c22982acaeaccdf5d379afced62 * Add internal to GPUErrorFilter to make more test work * No crash in CreateRenderBundleEncoder * getCompilationInfo * Update expectations
Diffstat (limited to 'components/script/dom/gpushadermodule.rs')
-rw-r--r--components/script/dom/gpushadermodule.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/script/dom/gpushadermodule.rs b/components/script/dom/gpushadermodule.rs
index 5fe770a3e45..261f551a27f 100644
--- a/components/script/dom/gpushadermodule.rs
+++ b/components/script/dom/gpushadermodule.rs
@@ -63,7 +63,7 @@ impl GPUShaderModuleMethods for GPUShaderModule {
}
/// https://gpuweb.github.io/gpuweb/#dom-gpushadermodule-getcompilationinfo
- fn CompilationInfo(&self) -> Fallible<Rc<Promise>> {
- todo!()
+ fn GetCompilationInfo(&self) -> Fallible<Rc<Promise>> {
+ todo!("Missing in wgpu: https://github.com/gfx-rs/wgpu/issues/2170")
}
}