Skip failing CopyTexture tests on WARP
BUG=dawn:1104 Change-Id: Ie4e870fd182bcf5ec0a0007317705a0555a76e0d Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/63980 Reviewed-by: Austin Eng <enga@chromium.org> Reviewed-by: Corentin Wallez <cwallez@chromium.org> Commit-Queue: Bryan Bernhart <bryan.bernhart@intel.com>
This commit is contained in:
parent
363c28e5d1
commit
d9331035a6
|
@ -559,6 +559,9 @@ TEST_P(CopyTextureForBrowserTests, CopySubRect) {
|
|||
// Tests skip due to crbug.com/dawn/592.
|
||||
DAWN_SUPPRESS_TEST_IF(IsD3D12() && IsBackendValidationEnabled());
|
||||
|
||||
// Tests skip due to crbug.com/dawn/1104.
|
||||
DAWN_SUPPRESS_TEST_IF(IsWARP());
|
||||
|
||||
for (wgpu::Origin3D srcOrigin : kOrigins) {
|
||||
for (wgpu::Origin3D dstOrigin : kOrigins) {
|
||||
for (wgpu::Extent3D copySize : kCopySizes) {
|
||||
|
@ -587,6 +590,9 @@ TEST_P(CopyTextureForBrowserTests, alphaOp) {
|
|||
// source texture format.
|
||||
DAWN_SUPPRESS_TEST_IF(IsOpenGLES());
|
||||
|
||||
// Tests skip due to crbug.com/dawn/1104.
|
||||
DAWN_SUPPRESS_TEST_IF(IsWARP());
|
||||
|
||||
constexpr uint32_t kWidth = 10;
|
||||
constexpr uint32_t kHeight = 10;
|
||||
|
||||
|
|
Loading…
Reference in New Issue