Default use_tint_generator to on for D3D12

Most tests pass, those that don't are skipped.

Change-Id: Ia08373551a48382aceffbbc0e23bd15828ebe219
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/46452
Commit-Queue: Austin Eng <enga@chromium.org>
Auto-Submit: Ben Clayton <bclayton@google.com>
Reviewed-by: Austin Eng <enga@chromium.org>
This commit is contained in:
Ben Clayton 2021-04-07 21:48:11 +00:00 committed by Commit Bot service account
parent 8fa93436ea
commit 40d1c83362
2 changed files with 1 additions and 1 deletions

View File

@ -536,6 +536,7 @@ std::vector<AdapterTestParam> DawnTestEnvironment::GetAvailableAdapterTestParams
// test skips on all backends, we can remove this and use a test suite with // test skips on all backends, we can remove this and use a test suite with
// 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::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];

View File

@ -137,7 +137,6 @@ TEST_P(EntryPointTests, TwoComputeInModule) {
DAWN_INSTANTIATE_TEST(EntryPointTests, DAWN_INSTANTIATE_TEST(EntryPointTests,
D3D12Backend(), D3D12Backend(),
D3D12Backend({"use_tint_generator"}),
MetalBackend(), MetalBackend(),
OpenGLBackend(), OpenGLBackend(),
OpenGLESBackend(), OpenGLESBackend(),