mirror of
https://github.com/servo/servo.git
synced 2025-07-23 07:13:52 +01:00
Remove failure breaks from webgpu thread (#32814)
* Remove breaks from webgpu requests Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * expect Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> * limit,out_of_range TIMEOUT->FAIL Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com> --------- Signed-off-by: sagudev <16504129+sagudev@users.noreply.github.com>
This commit is contained in:
parent
2c17de7fa7
commit
b471f6473f
2 changed files with 361 additions and 1357 deletions
|
@ -694,10 +694,6 @@ impl WGPU {
|
||||||
})
|
})
|
||||||
.map_err(|e| e.to_string());
|
.map_err(|e| e.to_string());
|
||||||
|
|
||||||
if response.is_err() {
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if let Err(e) = sender.send(WebGPUResponse::Adapter(response)) {
|
if let Err(e) = sender.send(WebGPUResponse::Adapter(response)) {
|
||||||
warn!(
|
warn!(
|
||||||
"Failed to send response to WebGPURequest::RequestAdapter ({})",
|
"Failed to send response to WebGPURequest::RequestAdapter ({})",
|
||||||
|
@ -733,7 +729,7 @@ impl WGPU {
|
||||||
e
|
e
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
let device = WebGPUDevice(device_id);
|
let device = WebGPUDevice(device_id);
|
||||||
let queue = WebGPUQueue(queue_id);
|
let queue = WebGPUQueue(queue_id);
|
||||||
|
|
1712
tests/wpt/webgpu/meta/webgpu/cts.https.html.ini
vendored
1712
tests/wpt/webgpu/meta/webgpu/cts.https.html.ini
vendored
File diff suppressed because it is too large
Load diff
Loading…
Add table
Add a link
Reference in a new issue