diff options
author | Samson <16504129+sagudev@users.noreply.github.com> | 2023-12-28 18:32:21 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-28 17:32:21 +0000 |
commit | e79171ec01199ba7100c0ad90576a6ec5705d80c (patch) | |
tree | 394f0dea6265baccb35245a96a5b4476c8669744 /components/script/dom/gpushadermodule.rs | |
parent | 90a25ab2e1344e13bf58c0dcab3ce5e9b58f3572 (diff) | |
download | servo-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.rs | 4 |
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") } } |