Suppress test failure on Vulkan

BUG=dawn:16

Change-Id: I8d0ae82d379ff092e1d585f2b69dd6226aa55c39
Reviewed-on: https://dawn-review.googlesource.com/c/1820
Reviewed-by: Jiawei Shao <jiawei.shao@intel.com>
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
Corentin Wallez 2018-10-16 09:16:15 +00:00 committed by Commit Bot service account
parent 9e4518b57e
commit 79aee9c56d
3 changed files with 11 additions and 7 deletions

View File

@ -96,6 +96,14 @@ namespace {
DawnTest* test;
size_t slot;
};
constexpr uint32_t kVendorID_AMD = 0x1002;
constexpr uint32_t kVendorID_ARM = 0x13B5;
constexpr uint32_t kVendorID_ImgTec = 0x1010;
constexpr uint32_t kVendorID_Intel = 0x8086;
constexpr uint32_t kVendorID_Nvidia = 0x10DE;
constexpr uint32_t kVendorID_Qualcomm = 0x5143;
} // namespace
DawnTest::DawnTest() = default;

View File

@ -65,13 +65,6 @@ enum BackendType {
};
std::ostream& operator<<(std::ostream& stream, BackendType backend);
constexpr uint32_t kVendorID_AMD = 0x1002;
constexpr uint32_t kVendorID_ARM = 0x13B5;
constexpr uint32_t kVendorID_ImgTec = 0x1010;
constexpr uint32_t kVendorID_Intel = 0x8086;
constexpr uint32_t kVendorID_Nvidia = 0x10DE;
constexpr uint32_t kVendorID_Qualcomm = 0x5143;
namespace utils {
class BackendBinding;
class TerribleCommandBuffer;

View File

@ -141,6 +141,9 @@ protected:
// Test drawing a rect with a checkerboard 2D array texture.
TEST_P(TextureViewTest, Default2DArrayTexture) {
// TODO(cwallez@chromium.org) understand what the issue is
DAWN_SKIP_TEST_IF(IsVulkan() && IsNvidia());
constexpr uint32_t kLayers = 3;
initTexture(kLayers);