d3d11: suppress two TextureViewRenderingTest with Intel D3D11
Bug: dawn:1812 Change-Id: I22d28af0e299e8368f485bbd6117bb0a6778ef35 Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/132500 Reviewed-by: Austin Eng <enga@chromium.org> Commit-Queue: Peng Huang <penghuang@chromium.org> Kokoro: Kokoro <noreply+kokoro@google.com>
This commit is contained in:
parent
760036cf4a
commit
eb53af192f
|
@ -543,6 +543,9 @@ TEST_P(TextureViewSamplingTest, TextureCubeMapViewOnPartOfTexture) {
|
|||
|
||||
// Test sampling from a cube map texture view that covers the last layer of a 2D array texture.
|
||||
TEST_P(TextureViewSamplingTest, TextureCubeMapViewCoveringLastLayer) {
|
||||
// TODO(dawn:1812): the test fails with DXGI_ERROR_DEVICE_HUNG on Intel D3D11 driver.
|
||||
DAWN_SUPPRESS_TEST_IF(IsD3D11() && IsIntel());
|
||||
|
||||
constexpr uint32_t kTotalLayers = 10;
|
||||
constexpr uint32_t kBaseLayer = 4;
|
||||
TextureCubeMapTest(kTotalLayers, kBaseLayer, kTotalLayers - kBaseLayer, false);
|
||||
|
@ -699,6 +702,9 @@ TEST_P(TextureViewRenderingTest, Texture2DViewOnALevelOfRectangular2DTextureAsCo
|
|||
|
||||
// Test rendering into a 2D texture view created on a layer of a 2D array texture.
|
||||
TEST_P(TextureViewRenderingTest, Texture2DViewOnALayerOf2DArrayTextureAsColorAttachment) {
|
||||
// TODO(dawn:1812): the test fails with DXGI_ERROR_DEVICE_HUNG on Intel D3D11 driver.
|
||||
DAWN_SUPPRESS_TEST_IF(IsD3D11() && IsIntel());
|
||||
|
||||
constexpr uint32_t kMipLevels = 1;
|
||||
constexpr uint32_t kBaseLevel = 0;
|
||||
constexpr uint32_t kLayers = 10;
|
||||
|
|
Loading…
Reference in New Issue