Enable testing of Metal with Tint MSL generator

We are now passing all of Dawn's E2E tests with the Tint generator.

Bug: dawn:571
Change-Id: Ie74a07bde805b8652ac23af2bda2fa11597d04ce
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/55980
Commit-Queue: Corentin Wallez <cwallez@chromium.org>
Auto-Submit: James Price <jrprice@google.com>
Reviewed-by: Corentin Wallez <cwallez@chromium.org>
This commit is contained in:
James Price 2021-06-28 09:39:08 +00:00 committed by Dawn LUCI CQ
parent a0b31e04e8
commit 0cb3d480ff
1 changed files with 1 additions and 0 deletions

View File

@ -557,6 +557,7 @@ std::vector<AdapterTestParam> DawnTestEnvironment::GetAvailableAdapterTestParams
// use_tint_generator in the command line args instead. // use_tint_generator in the command line args instead.
if (params[i].backendType == wgpu::BackendType::Vulkan || if (params[i].backendType == wgpu::BackendType::Vulkan ||
params[i].backendType == wgpu::BackendType::D3D12 || params[i].backendType == wgpu::BackendType::D3D12 ||
params[i].backendType == wgpu::BackendType::Metal ||
params[i].backendType == wgpu::BackendType::OpenGL || params[i].backendType == wgpu::BackendType::OpenGL ||
params[i].backendType == wgpu::BackendType::OpenGLES) { params[i].backendType == wgpu::BackendType::OpenGLES) {
BackendTestConfig configWithTint = params[i]; BackendTestConfig configWithTint = params[i];