diff --git a/src/dawn/tests/AdapterTestConfig.cpp b/src/dawn/tests/AdapterTestConfig.cpp index 454b9b1495..e81bb295f8 100644 --- a/src/dawn/tests/AdapterTestConfig.cpp +++ b/src/dawn/tests/AdapterTestConfig.cpp @@ -29,6 +29,12 @@ BackendTestConfig::BackendTestConfig(wgpu::BackendType backendType, forceEnabledWorkarounds(forceEnabledWorkarounds), forceDisabledWorkarounds(forceDisabledWorkarounds) {} +BackendTestConfig D3D11Backend(std::initializer_list forceEnabledWorkarounds, + std::initializer_list forceDisabledWorkarounds) { + return BackendTestConfig(wgpu::BackendType::D3D11, forceEnabledWorkarounds, + forceDisabledWorkarounds); +} + BackendTestConfig D3D12Backend(std::initializer_list forceEnabledWorkarounds, std::initializer_list forceDisabledWorkarounds) { return BackendTestConfig(wgpu::BackendType::D3D12, forceEnabledWorkarounds, @@ -71,6 +77,8 @@ TestAdapterProperties::TestAdapterProperties(const wgpu::AdapterProperties& prop std::string TestAdapterProperties::ParamName() const { switch (backendType) { + case wgpu::BackendType::D3D11: + return "D3D11"; case wgpu::BackendType::D3D12: return "D3D12"; case wgpu::BackendType::Metal: diff --git a/src/dawn/tests/AdapterTestConfig.h b/src/dawn/tests/AdapterTestConfig.h index 2e978ec673..22735598f6 100644 --- a/src/dawn/tests/AdapterTestConfig.h +++ b/src/dawn/tests/AdapterTestConfig.h @@ -59,6 +59,9 @@ struct AdapterTestParam { std::ostream& operator<<(std::ostream& os, const AdapterTestParam& param); +BackendTestConfig D3D11Backend(std::initializer_list forceEnabledWorkarounds = {}, + std::initializer_list forceDisabledWorkarounds = {}); + BackendTestConfig D3D12Backend(std::initializer_list forceEnabledWorkarounds = {}, std::initializer_list forceDisabledWorkarounds = {}); diff --git a/src/dawn/tests/DawnTest.cpp b/src/dawn/tests/DawnTest.cpp index 04aa0aca65..a1b81032da 100644 --- a/src/dawn/tests/DawnTest.cpp +++ b/src/dawn/tests/DawnTest.cpp @@ -294,7 +294,9 @@ void DawnTestEnvironment::ParseArgs(int argc, char** argv) { argLen = sizeof(kBackendArg) - 1; if (strncmp(argv[i], kBackendArg, argLen) == 0) { const char* param = argv[i] + argLen; - if (strcmp("d3d12", param) == 0) { + if (strcmp("d3d11", param) == 0) { + mBackendTypeFilter = wgpu::BackendType::D3D11; + } else if (strcmp("d3d12", param) == 0) { mBackendTypeFilter = wgpu::BackendType::D3D12; } else if (strcmp("metal", param) == 0) { mBackendTypeFilter = wgpu::BackendType::Metal; @@ -699,9 +701,9 @@ DawnTestBase::~DawnTestBase() { mAdapter = nullptr; mInstance = nullptr; - // D3D12's GPU-based validation will accumulate objects over time if the backend device is not - // destroyed and recreated, so we reset it here. - if (IsD3D12() && IsBackendValidationEnabled()) { + // D3D11 and D3D12's GPU-based validation will accumulate objects over time if the backend + // device is not destroyed and recreated, so we reset it here. + if ((IsD3D11() || IsD3D12()) && IsBackendValidationEnabled()) { mBackendAdapter.ResetInternalDeviceForTesting(); } mWireHelper.reset(); @@ -712,6 +714,10 @@ DawnTestBase::~DawnTestBase() { gCurrentTest = nullptr; } +bool DawnTestBase::IsD3D11() const { + return mParam.adapterProperties.backendType == wgpu::BackendType::D3D11; +} + bool DawnTestBase::IsD3D12() const { return mParam.adapterProperties.backendType == wgpu::BackendType::D3D12; } @@ -1532,7 +1538,7 @@ void DawnTestBase::SlotMapCallback(WGPUBufferMapAsyncStatus status, void* userda void DawnTestBase::ResolveExpectations() { for (const auto& expectation : mDeferredExpectations) { - DAWN_ASSERT(mReadbackSlots[expectation.readbackSlot].mappedData != nullptr); + EXPECT_TRUE(mReadbackSlots[expectation.readbackSlot].mappedData != nullptr); // Get a pointer to the mapped copy of the data for the expectation. const char* data = diff --git a/src/dawn/tests/DawnTest.h b/src/dawn/tests/DawnTest.h index a62e112d67..938b11ca0c 100644 --- a/src/dawn/tests/DawnTest.h +++ b/src/dawn/tests/DawnTest.h @@ -222,6 +222,7 @@ class DawnTestBase { void SetUp(); void TearDown(); + bool IsD3D11() const; bool IsD3D12() const; bool IsMetal() const; bool IsNull() const; diff --git a/src/dawn/tests/end2end/BasicTests.cpp b/src/dawn/tests/end2end/BasicTests.cpp index 4193fc2f25..04eed0bc0a 100644 --- a/src/dawn/tests/end2end/BasicTests.cpp +++ b/src/dawn/tests/end2end/BasicTests.cpp @@ -59,6 +59,7 @@ TEST_P(BasicTests, QueueWriteBufferError) { } DAWN_INSTANTIATE_TEST(BasicTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/BindGroupTests.cpp b/src/dawn/tests/end2end/BindGroupTests.cpp index 2117c2e0a7..41bccacef0 100644 --- a/src/dawn/tests/end2end/BindGroupTests.cpp +++ b/src/dawn/tests/end2end/BindGroupTests.cpp @@ -170,7 +170,6 @@ TEST_P(BindGroupTests, ReusedUBO) { struct VertexUniformBuffer { transform : vec4f } - @group(0) @binding(0) var vertexUbo : VertexUniformBuffer; @vertex @@ -190,7 +189,8 @@ TEST_P(BindGroupTests, ReusedUBO) { } @group(0) @binding(1) var fragmentUbo : FragmentUniformBuffer; - @fragment fn main() -> @location(0) vec4f { + @fragment + fn main() -> @location(0) vec4f { return fragmentUbo.color; })"); @@ -203,20 +203,17 @@ TEST_P(BindGroupTests, ReusedUBO) { struct Data { float transform[8]; - char padding[256 - 8 * sizeof(float)]; + char padding[256 - sizeof(transform)]; float color[4]; }; - ASSERT(offsetof(Data, color) == 256); - Data data{ - {1.f, 0.f, 0.f, 1.0f}, - {0}, - {0.f, 1.f, 0.f, 1.f}, - }; + Data data{{1.f, 0.f, 0.f, 1.0f}, {0}, {0.f, 1.f, 0.f, 1.f}}; wgpu::Buffer buffer = utils::CreateBufferFromData(device, &data, sizeof(data), wgpu::BufferUsage::Uniform); - wgpu::BindGroup bindGroup = utils::MakeBindGroup( - device, pipeline.GetBindGroupLayout(0), - {{0, buffer, 0, sizeof(Data::transform)}, {1, buffer, 256, sizeof(Data::color)}}); + + wgpu::BindGroup bindGroup = + utils::MakeBindGroup(device, pipeline.GetBindGroupLayout(0), + {{0, buffer, offsetof(Data, transform), sizeof(Data::transform)}, + {1, buffer, offsetof(Data, color), sizeof(Data::color)}}); wgpu::CommandEncoder encoder = device.CreateCommandEncoder(); wgpu::RenderPassEncoder pass = encoder.BeginRenderPass(&renderPass.renderPassInfo); @@ -992,6 +989,9 @@ TEST_P(BindGroupTests, DrawThenChangePipelineTwiceAndBindGroup) { // Regression test for crbug.com/dawn/408 where dynamic offsets were applied in the wrong order. // Dynamic offsets should be applied in increasing order of binding number. TEST_P(BindGroupTests, DynamicOffsetOrder) { + // D3D11 doesn't support partial updates of dynamic uniform buffers. + DAWN_SUPPRESS_TEST_IF(IsD3D11()); + // We will put the following values and the respective offsets into a buffer. // The test will ensure that the correct dynamic offset is applied to each buffer by reading the // value from an offset binding. @@ -1507,6 +1507,7 @@ TEST_P(BindGroupTests, CreateWithDestroyedResource) { } DAWN_INSTANTIATE_TEST(BindGroupTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/BufferTests.cpp b/src/dawn/tests/end2end/BufferTests.cpp index 98a96a73b5..a8af96097d 100644 --- a/src/dawn/tests/end2end/BufferTests.cpp +++ b/src/dawn/tests/end2end/BufferTests.cpp @@ -553,6 +553,7 @@ TEST_P(BufferMappingTests, RegressChromium1421170) { } DAWN_INSTANTIATE_TEST(BufferMappingTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -713,7 +714,11 @@ TEST_P(BufferMappingCallbackTests, EmptySubmissionWriteAndThenMap) { buffer.Unmap(); } -DAWN_INSTANTIATE_TEST(BufferMappingCallbackTests, D3D12Backend(), MetalBackend(), VulkanBackend()); +DAWN_INSTANTIATE_TEST(BufferMappingCallbackTests, + D3D11Backend(), + D3D12Backend(), + MetalBackend(), + VulkanBackend()); class BufferMappedAtCreationTests : public DawnTest { protected: @@ -961,6 +966,7 @@ TEST_P(BufferMappedAtCreationTests, GetMappedRangeZeroSized) { } DAWN_INSTANTIATE_TEST(BufferMappedAtCreationTests, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_resource_heap_tier2"}), MetalBackend(), @@ -1108,6 +1114,7 @@ TEST_P(BufferTests, CreateBufferOOMMapAsync) { } DAWN_INSTANTIATE_TEST(BufferTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1140,6 +1147,7 @@ TEST_P(BufferNoSuballocationTests, WriteBufferThenDestroy) { } DAWN_INSTANTIATE_TEST(BufferNoSuballocationTests, + D3D11Backend({"disable_resource_suballocation"}), D3D12Backend({"disable_resource_suballocation"}), MetalBackend({"disable_resource_suballocation"}), OpenGLBackend({"disable_resource_suballocation"}), diff --git a/src/dawn/tests/end2end/ClipSpaceTests.cpp b/src/dawn/tests/end2end/ClipSpaceTests.cpp index ca0fa35bf0..5f8c07e02a 100644 --- a/src/dawn/tests/end2end/ClipSpaceTests.cpp +++ b/src/dawn/tests/end2end/ClipSpaceTests.cpp @@ -93,6 +93,7 @@ TEST_P(ClipSpaceTest, ClipSpace) { } DAWN_INSTANTIATE_TEST(ClipSpaceTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ColorStateTests.cpp b/src/dawn/tests/end2end/ColorStateTests.cpp index 0216eaebfb..c5e35b144f 100644 --- a/src/dawn/tests/end2end/ColorStateTests.cpp +++ b/src/dawn/tests/end2end/ColorStateTests.cpp @@ -1189,6 +1189,7 @@ TEST_P(ColorStateTest, SrcBlendFactorDstAlphaDstBlendFactorZero) { } DAWN_INSTANTIATE_TEST(ColorStateTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/CommandEncoderTests.cpp b/src/dawn/tests/end2end/CommandEncoderTests.cpp index 00d99c56d3..14f227e7a7 100644 --- a/src/dawn/tests/end2end/CommandEncoderTests.cpp +++ b/src/dawn/tests/end2end/CommandEncoderTests.cpp @@ -46,6 +46,7 @@ TEST_P(CommandEncoderTests, WriteBuffer) { } DAWN_INSTANTIATE_TEST(CommandEncoderTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp index e0650c4f3e..3ecd54df0b 100644 --- a/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp +++ b/src/dawn/tests/end2end/CompressedTextureFormatTests.cpp @@ -1121,8 +1121,8 @@ TEST_P(CompressedTextureFormatTest, CopyMultiple2DArrayLayers) { } DAWN_INSTANTIATE_TEST_P(CompressedTextureFormatTest, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend(), + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend(), VulkanBackend({"use_temporary_buffer_in_texture_to_texture_copy"})}, std::vector(utils::kCompressedFormats.begin(), utils::kCompressedFormats.end())); @@ -1177,6 +1177,7 @@ TEST_P(CompressedTextureFormatSpecificTest, BC1RGBAUnorm_UnalignedDynamicUploade } DAWN_INSTANTIATE_TEST(CompressedTextureFormatSpecificTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1304,7 +1305,7 @@ TEST_P(CompressedTextureWriteTextureTest, } DAWN_INSTANTIATE_TEST_P(CompressedTextureWriteTextureTest, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, std::vector(utils::kCompressedFormats.begin(), utils::kCompressedFormats.end())); diff --git a/src/dawn/tests/end2end/ComputeCopyStorageBufferTests.cpp b/src/dawn/tests/end2end/ComputeCopyStorageBufferTests.cpp index b4bd836fc5..4cd8fe56a2 100644 --- a/src/dawn/tests/end2end/ComputeCopyStorageBufferTests.cpp +++ b/src/dawn/tests/end2end/ComputeCopyStorageBufferTests.cpp @@ -145,6 +145,7 @@ TEST_P(ComputeCopyStorageBufferTests, UnsizedArrayOfBasic) { } DAWN_INSTANTIATE_TEST(ComputeCopyStorageBufferTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ComputeDispatchTests.cpp b/src/dawn/tests/end2end/ComputeDispatchTests.cpp index 23555a5a46..693062651f 100644 --- a/src/dawn/tests/end2end/ComputeDispatchTests.cpp +++ b/src/dawn/tests/end2end/ComputeDispatchTests.cpp @@ -311,6 +311,7 @@ TEST_P(ComputeDispatchTests, ExceedsMaxWorkgroupsWithOffsetNoop) { } DAWN_INSTANTIATE_TEST(ComputeDispatchTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ComputeFlowControlTests.cpp b/src/dawn/tests/end2end/ComputeFlowControlTests.cpp index 933ffafe10..6c22093898 100644 --- a/src/dawn/tests/end2end/ComputeFlowControlTests.cpp +++ b/src/dawn/tests/end2end/ComputeFlowControlTests.cpp @@ -500,6 +500,7 @@ fn main() { } DAWN_INSTANTIATE_TEST(ComputeFlowControlTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ComputeLayoutMemoryBufferTests.cpp b/src/dawn/tests/end2end/ComputeLayoutMemoryBufferTests.cpp index 734d82c361..897f1dd603 100644 --- a/src/dawn/tests/end2end/ComputeLayoutMemoryBufferTests.cpp +++ b/src/dawn/tests/end2end/ComputeLayoutMemoryBufferTests.cpp @@ -778,6 +778,7 @@ fn main() { auto GenerateParams() { auto params = MakeParamGenerator( { + D3D11Backend(), D3D12Backend(), D3D12Backend({"use_dxc"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/ComputeSharedMemoryTests.cpp b/src/dawn/tests/end2end/ComputeSharedMemoryTests.cpp index e3955176b6..57ad5b6118 100644 --- a/src/dawn/tests/end2end/ComputeSharedMemoryTests.cpp +++ b/src/dawn/tests/end2end/ComputeSharedMemoryTests.cpp @@ -197,6 +197,7 @@ TEST_P(ComputeSharedMemoryTests, AssortedTypes) { } DAWN_INSTANTIATE_TEST(ComputeSharedMemoryTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ComputeStorageBufferBarrierTests.cpp b/src/dawn/tests/end2end/ComputeStorageBufferBarrierTests.cpp index 4dbaf7321a..e9af8582fc 100644 --- a/src/dawn/tests/end2end/ComputeStorageBufferBarrierTests.cpp +++ b/src/dawn/tests/end2end/ComputeStorageBufferBarrierTests.cpp @@ -409,6 +409,7 @@ TEST_P(ComputeStorageBufferBarrierTests, IndirectBufferCorrectBarrier) { } DAWN_INSTANTIATE_TEST(ComputeStorageBufferBarrierTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/CopyExternalTextureForBrowserTests.cpp b/src/dawn/tests/end2end/CopyExternalTextureForBrowserTests.cpp index f27bb27a16..b2ec4428b0 100644 --- a/src/dawn/tests/end2end/CopyExternalTextureForBrowserTests.cpp +++ b/src/dawn/tests/end2end/CopyExternalTextureForBrowserTests.cpp @@ -378,7 +378,8 @@ TEST_P(CopyExternalTextureForBrowserTests_Basic, Copy) { DAWN_INSTANTIATE_TEST_P( CopyExternalTextureForBrowserTests_Basic, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), + VulkanBackend()}, std::vector({CopyRect::TopLeft, CopyRect::TopRight, CopyRect::BottomLeft, CopyRect::BottomRight, CopyRect::FullSize}), std::vector({CopyRect::TopLeft, CopyRect::TopRight, CopyRect::BottomLeft, diff --git a/src/dawn/tests/end2end/CopyTests.cpp b/src/dawn/tests/end2end/CopyTests.cpp index 8aaabc3dc9..285096aada 100644 --- a/src/dawn/tests/end2end/CopyTests.cpp +++ b/src/dawn/tests/end2end/CopyTests.cpp @@ -1353,6 +1353,7 @@ TEST_P(CopyTests_T2B, Texture3DMipUnaligned) { } DAWN_INSTANTIATE_TEST(CopyTests_T2B, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1946,6 +1947,7 @@ TEST_P(CopyTests_B2T, Texture3DMipUnaligned) { } DAWN_INSTANTIATE_TEST(CopyTests_B2T, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -2446,7 +2448,7 @@ TEST_P(CopyTests_T2T, Texture3DMipUnaligned) { DAWN_INSTANTIATE_TEST_P( CopyTests_T2T, - {D3D12Backend(), + {D3D11Backend(), D3D12Backend(), D3D12Backend({"use_temp_buffer_in_small_format_texture_to_texture_copy_from_greater_to_less_" "mip_level"}), D3D12Backend( @@ -2470,8 +2472,8 @@ TEST_P(CopyTests_Formats, SrgbCompatibility) { } DAWN_INSTANTIATE_TEST_P(CopyTests_Formats, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, {wgpu::TextureFormat::RGBA8Unorm, wgpu::TextureFormat::RGBA8UnormSrgb, wgpu::TextureFormat::BGRA8Unorm, wgpu::TextureFormat::BGRA8UnormSrgb}); @@ -2502,6 +2504,7 @@ TEST_P(CopyTests_B2B, ZeroSizedCopy) { } DAWN_INSTANTIATE_TEST(CopyTests_B2B, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -2530,6 +2533,7 @@ TEST_P(ClearBufferTests, ZeroSizedClear) { } DAWN_INSTANTIATE_TEST(ClearBufferTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -2712,8 +2716,9 @@ TEST_P(CopyToDepthStencilTextureAfterDestroyingBigBufferTests, DoTest) { DAWN_INSTANTIATE_TEST_P( CopyToDepthStencilTextureAfterDestroyingBigBufferTests, - {D3D12Backend(), D3D12Backend({"d3d12_force_clear_copyable_depth_stencil_texture_on_creation"}), - MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), + D3D12Backend({"d3d12_force_clear_copyable_depth_stencil_texture_on_creation"}), MetalBackend(), + OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, {wgpu::TextureFormat::Depth16Unorm, wgpu::TextureFormat::Stencil8}, {InitializationMethod::CopyBufferToTexture, InitializationMethod::WriteTexture, InitializationMethod::CopyTextureToTexture}, @@ -2911,6 +2916,7 @@ TEST_P(T2TCopyFromDirtyHeapTests, From2DMultiMipmapLevelTexture) { } DAWN_INSTANTIATE_TEST(T2TCopyFromDirtyHeapTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/CopyTextureForBrowserTests.cpp b/src/dawn/tests/end2end/CopyTextureForBrowserTests.cpp index d1d1d7717a..e458f2f1b2 100644 --- a/src/dawn/tests/end2end/CopyTextureForBrowserTests.cpp +++ b/src/dawn/tests/end2end/CopyTextureForBrowserTests.cpp @@ -1116,6 +1116,7 @@ TEST_P(CopyTextureForBrowser_Basic, VerifyFlipYInSlimTexture) { } DAWN_INSTANTIATE_TEST(CopyTextureForBrowser_Basic, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1137,19 +1138,20 @@ TEST_P(CopyTextureForBrowser_Formats, ColorConversion) { DoColorConversionTest(); } -DAWN_INSTANTIATE_TEST_P( - CopyTextureForBrowser_Formats, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, - std::vector({wgpu::TextureFormat::RGBA8Unorm, - wgpu::TextureFormat::BGRA8Unorm, - wgpu::TextureFormat::RGBA16Float}), - std::vector( - {wgpu::TextureFormat::R8Unorm, wgpu::TextureFormat::R16Float, wgpu::TextureFormat::R32Float, - wgpu::TextureFormat::RG8Unorm, wgpu::TextureFormat::RG16Float, - wgpu::TextureFormat::RG32Float, wgpu::TextureFormat::RGBA8Unorm, - wgpu::TextureFormat::RGBA8UnormSrgb, wgpu::TextureFormat::BGRA8Unorm, - wgpu::TextureFormat::BGRA8UnormSrgb, wgpu::TextureFormat::RGB10A2Unorm, - wgpu::TextureFormat::RGBA16Float, wgpu::TextureFormat::RGBA32Float})); +DAWN_INSTANTIATE_TEST_P(CopyTextureForBrowser_Formats, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, + std::vector({wgpu::TextureFormat::RGBA8Unorm, + wgpu::TextureFormat::BGRA8Unorm, + wgpu::TextureFormat::RGBA16Float}), + std::vector( + {wgpu::TextureFormat::R8Unorm, wgpu::TextureFormat::R16Float, + wgpu::TextureFormat::R32Float, wgpu::TextureFormat::RG8Unorm, + wgpu::TextureFormat::RG16Float, wgpu::TextureFormat::RG32Float, + wgpu::TextureFormat::RGBA8Unorm, wgpu::TextureFormat::RGBA8UnormSrgb, + wgpu::TextureFormat::BGRA8Unorm, wgpu::TextureFormat::BGRA8UnormSrgb, + wgpu::TextureFormat::RGB10A2Unorm, wgpu::TextureFormat::RGBA16Float, + wgpu::TextureFormat::RGBA32Float})); // Verify |CopyTextureForBrowser| doing subrect copy. // Source texture is a full red texture and dst texture is a full @@ -1170,8 +1172,8 @@ TEST_P(CopyTextureForBrowser_SubRects, CopySubRect) { } DAWN_INSTANTIATE_TEST_P(CopyTextureForBrowser_SubRects, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, std::vector({{1, 1}, {1, 2}, {2, 1}}), std::vector({{1, 1}, {1, 2}, {2, 1}}), std::vector({{1, 1}, {2, 1}, {1, 2}, {2, 2}}), @@ -1194,7 +1196,8 @@ TEST_P(CopyTextureForBrowser_AlphaMode, alphaMode) { DAWN_INSTANTIATE_TEST_P( CopyTextureForBrowser_AlphaMode, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), + VulkanBackend()}, std::vector({wgpu::AlphaMode::Premultiplied, wgpu::AlphaMode::Unpremultiplied, wgpu::AlphaMode::Opaque}), std::vector({wgpu::AlphaMode::Premultiplied, wgpu::AlphaMode::Unpremultiplied, @@ -1213,8 +1216,8 @@ TEST_P(CopyTextureForBrowser_ColorSpace, colorSpaceConversion) { } DAWN_INSTANTIATE_TEST_P(CopyTextureForBrowser_ColorSpace, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, std::vector({wgpu::TextureFormat::RGBA16Float, wgpu::TextureFormat::RGBA32Float}), std::vector({ColorSpace::SRGB, ColorSpace::DisplayP3}), diff --git a/src/dawn/tests/end2end/CreatePipelineAsyncTests.cpp b/src/dawn/tests/end2end/CreatePipelineAsyncTests.cpp index 627d3b28d4..5d945be8a2 100644 --- a/src/dawn/tests/end2end/CreatePipelineAsyncTests.cpp +++ b/src/dawn/tests/end2end/CreatePipelineAsyncTests.cpp @@ -955,6 +955,7 @@ TEST_P(CreatePipelineAsyncTest, CreateRenderPipelineAsyncWithBlendState) { } DAWN_INSTANTIATE_TEST(CreatePipelineAsyncTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/CullingTests.cpp b/src/dawn/tests/end2end/CullingTests.cpp index 368046631b..47d30cc490 100644 --- a/src/dawn/tests/end2end/CullingTests.cpp +++ b/src/dawn/tests/end2end/CullingTests.cpp @@ -127,6 +127,7 @@ TEST_P(CullingTest, CullBackFaceWhenCWIsFrontFace) { } DAWN_INSTANTIATE_TEST(CullingTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DepthBiasTests.cpp b/src/dawn/tests/end2end/DepthBiasTests.cpp index 5ad2919815..78538c11f6 100644 --- a/src/dawn/tests/end2end/DepthBiasTests.cpp +++ b/src/dawn/tests/end2end/DepthBiasTests.cpp @@ -390,6 +390,7 @@ TEST_P(DepthBiasTests, PositiveSlopeBiasOn24bit) { } DAWN_INSTANTIATE_TEST(DepthBiasTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DepthStencilCopyTests.cpp b/src/dawn/tests/end2end/DepthStencilCopyTests.cpp index 37d04cb305..5b440e385a 100644 --- a/src/dawn/tests/end2end/DepthStencilCopyTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilCopyTests.cpp @@ -1040,7 +1040,7 @@ TEST_P(DepthStencilCopyTests_RegressionDawn1083, Run) { DAWN_INSTANTIATE_TEST_P( DepthStencilCopyTests, - {D3D12Backend(), MetalBackend(), + {D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"use_blit_for_depth_texture_to_texture_copy_to_nonzero_subresource"}), MetalBackend({"use_blit_for_buffer_to_depth_texture_copy", "use_blit_for_buffer_to_stencil_texture_copy"}), @@ -1052,7 +1052,7 @@ DAWN_INSTANTIATE_TEST_P( DAWN_INSTANTIATE_TEST_P( DepthCopyTests, - {D3D12Backend(), + {D3D11Backend(), D3D12Backend(), D3D12Backend({"d3d12_use_temp_buffer_in_depth_stencil_texture_and_buffer_" "copy_with_non_zero_buffer_offset"}), MetalBackend(), @@ -1062,7 +1062,7 @@ DAWN_INSTANTIATE_TEST_P( kValidDepthCopyTextureFormats.end())); DAWN_INSTANTIATE_TEST_P(DepthCopyFromBufferTests, - {D3D12Backend(), + {D3D11Backend(), D3D12Backend(), D3D12Backend({"d3d12_use_temp_buffer_in_depth_stencil_texture_and_buffer_" "copy_with_non_zero_buffer_offset"}), MetalBackend(), @@ -1073,7 +1073,7 @@ DAWN_INSTANTIATE_TEST_P(DepthCopyFromBufferTests, DAWN_INSTANTIATE_TEST_P( StencilCopyTests, - {D3D12Backend(), + {D3D11Backend(), D3D12Backend(), D3D12Backend({"d3d12_use_temp_buffer_in_depth_stencil_texture_and_buffer_" "copy_with_non_zero_buffer_offset"}), MetalBackend(), MetalBackend({"metal_use_combined_depth_stencil_format_for_stencil8"}), @@ -1087,7 +1087,7 @@ DAWN_INSTANTIATE_TEST_P( DAWN_INSTANTIATE_TEST_P( DepthStencilCopyTests_RegressionDawn1083, - {D3D12Backend(), MetalBackend(), + {D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"use_blit_for_depth_texture_to_texture_copy_to_nonzero_subresource"}), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, std::vector{wgpu::TextureFormat::Depth16Unorm, diff --git a/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp b/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp index 29bb81d9cd..bbb784ed23 100644 --- a/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilLoadOpTests.cpp @@ -231,14 +231,14 @@ namespace { auto GenerateParam() { auto params1 = MakeParamGenerator( - {D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), - OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), + MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, {wgpu::TextureFormat::Depth32Float, wgpu::TextureFormat::Depth16Unorm}, {Check::CopyDepth, Check::DepthTest, Check::SampleDepth}); auto params2 = MakeParamGenerator( - {D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), - MetalBackend({"metal_use_combined_depth_stencil_format_for_stencil8"}), + {D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), + MetalBackend(), MetalBackend({"metal_use_combined_depth_stencil_format_for_stencil8"}), MetalBackend( {"metal_use_both_depth_and_stencil_attachments_for_combined_depth_stencil_formats"}), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, @@ -294,8 +294,9 @@ TEST_P(StencilClearValueOverflowTest, StencilClearValueOverFlowUint16) { } DAWN_INSTANTIATE_TEST_P(StencilClearValueOverflowTest, - {D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), - MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), + D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), + OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, {wgpu::TextureFormat::Depth24PlusStencil8, wgpu::TextureFormat::Depth32FloatStencil8, wgpu::TextureFormat::Stencil8}, {Check::CopyStencil, Check::StencilTest}); @@ -412,8 +413,8 @@ TEST_P(DepthTextureClearTwiceTest, ClearDepthAspectTwice) { } DAWN_INSTANTIATE_TEST_P(DepthTextureClearTwiceTest, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, {wgpu::TextureFormat::Depth16Unorm, wgpu::TextureFormat::Depth24Plus, wgpu::TextureFormat::Depth32Float, wgpu::TextureFormat::Depth32FloatStencil8, diff --git a/src/dawn/tests/end2end/DepthStencilSamplingTests.cpp b/src/dawn/tests/end2end/DepthStencilSamplingTests.cpp index 58f84f23a6..1898a87f43 100644 --- a/src/dawn/tests/end2end/DepthStencilSamplingTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilSamplingTests.cpp @@ -921,19 +921,19 @@ TEST_P(StencilSamplingTest, SampleStencilOnly) { } DAWN_INSTANTIATE_TEST_P(DepthStencilSamplingTest, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, std::vector(utils::kDepthAndStencilFormats.begin(), utils::kDepthAndStencilFormats.end())); DAWN_INSTANTIATE_TEST_P(DepthSamplingTest, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), - VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + OpenGLESBackend(), VulkanBackend()}, std::vector(utils::kDepthFormats.begin(), utils::kDepthFormats.end())); DAWN_INSTANTIATE_TEST_P(StencilSamplingTest, - {D3D12Backend(), MetalBackend(), + {D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"metal_use_combined_depth_stencil_format_for_stencil8"}), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, std::vector(utils::kStencilFormats.begin(), diff --git a/src/dawn/tests/end2end/DepthStencilStateTests.cpp b/src/dawn/tests/end2end/DepthStencilStateTests.cpp index c2446bca68..0c9457e10e 100644 --- a/src/dawn/tests/end2end/DepthStencilStateTests.cpp +++ b/src/dawn/tests/end2end/DepthStencilStateTests.cpp @@ -840,6 +840,7 @@ TEST_P(DepthStencilStateTest, StencilReferenceInitialized) { } DAWN_INSTANTIATE_TEST(DepthStencilStateTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DestroyTests.cpp b/src/dawn/tests/end2end/DestroyTests.cpp index 8a2d0bf923..4b903f5e04 100644 --- a/src/dawn/tests/end2end/DestroyTests.cpp +++ b/src/dawn/tests/end2end/DestroyTests.cpp @@ -213,6 +213,7 @@ TEST_P(DestroyTest, GetQueueAfterDeviceDestroy) { } DAWN_INSTANTIATE_TEST(DestroyTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DeviceLifetimeTests.cpp b/src/dawn/tests/end2end/DeviceLifetimeTests.cpp index ad760fb336..cec6374bf1 100644 --- a/src/dawn/tests/end2end/DeviceLifetimeTests.cpp +++ b/src/dawn/tests/end2end/DeviceLifetimeTests.cpp @@ -509,6 +509,7 @@ TEST_P(DeviceLifetimeTests, DropDevice2InProcessEvents) { } DAWN_INSTANTIATE_TEST(DeviceLifetimeTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), NullBackend(), diff --git a/src/dawn/tests/end2end/DeviceLostTests.cpp b/src/dawn/tests/end2end/DeviceLostTests.cpp index beb7a8a3fa..f2ad3bdc83 100644 --- a/src/dawn/tests/end2end/DeviceLostTests.cpp +++ b/src/dawn/tests/end2end/DeviceLostTests.cpp @@ -537,6 +537,7 @@ TEST_P(DeviceLostTest, SetLabelAfterDeviceLoss) { } DAWN_INSTANTIATE_TEST(DeviceLostTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), NullBackend(), diff --git a/src/dawn/tests/end2end/DrawIndexedIndirectTests.cpp b/src/dawn/tests/end2end/DrawIndexedIndirectTests.cpp index f87994f94a..549a5bb34d 100644 --- a/src/dawn/tests/end2end/DrawIndexedIndirectTests.cpp +++ b/src/dawn/tests/end2end/DrawIndexedIndirectTests.cpp @@ -710,6 +710,7 @@ TEST_P(DrawIndexedIndirectTest, ValidateReusedBundleWithChangingParams) { } DAWN_INSTANTIATE_TEST(DrawIndexedIndirectTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DrawIndexedTests.cpp b/src/dawn/tests/end2end/DrawIndexedTests.cpp index 7f8198c52b..48b5a6c314 100644 --- a/src/dawn/tests/end2end/DrawIndexedTests.cpp +++ b/src/dawn/tests/end2end/DrawIndexedTests.cpp @@ -156,6 +156,7 @@ TEST_P(DrawIndexedTest, BaseVertex) { } DAWN_INSTANTIATE_TEST(DrawIndexedTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DrawIndirectTests.cpp b/src/dawn/tests/end2end/DrawIndirectTests.cpp index 8c0b28af51..b1ee3953f7 100644 --- a/src/dawn/tests/end2end/DrawIndirectTests.cpp +++ b/src/dawn/tests/end2end/DrawIndirectTests.cpp @@ -129,6 +129,7 @@ TEST_P(DrawIndirectTest, IndirectOffset) { } DAWN_INSTANTIATE_TEST(DrawIndirectTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DrawTests.cpp b/src/dawn/tests/end2end/DrawTests.cpp index 10c7e3a14d..e7ffbca209 100644 --- a/src/dawn/tests/end2end/DrawTests.cpp +++ b/src/dawn/tests/end2end/DrawTests.cpp @@ -101,6 +101,7 @@ TEST_P(DrawTest, Uint32) { } DAWN_INSTANTIATE_TEST(DrawTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/DynamicBufferOffsetTests.cpp b/src/dawn/tests/end2end/DynamicBufferOffsetTests.cpp index 8f1d59e9ab..1131857dd2 100644 --- a/src/dawn/tests/end2end/DynamicBufferOffsetTests.cpp +++ b/src/dawn/tests/end2end/DynamicBufferOffsetTests.cpp @@ -573,6 +573,7 @@ TEST_P(ClampedOOBDynamicBufferOffsetTests, CheckOOBAccess) { } DAWN_INSTANTIATE_TEST(DynamicBufferOffsetTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/EntryPointTests.cpp b/src/dawn/tests/end2end/EntryPointTests.cpp index 18b3fbda2d..2bd1ca47e0 100644 --- a/src/dawn/tests/end2end/EntryPointTests.cpp +++ b/src/dawn/tests/end2end/EntryPointTests.cpp @@ -143,6 +143,7 @@ TEST_P(EntryPointTests, TwoComputeInModule) { } DAWN_INSTANTIATE_TEST(EntryPointTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/FirstIndexOffsetTests.cpp b/src/dawn/tests/end2end/FirstIndexOffsetTests.cpp index ccb05290f4..29b0dcf87f 100644 --- a/src/dawn/tests/end2end/FirstIndexOffsetTests.cpp +++ b/src/dawn/tests/end2end/FirstIndexOffsetTests.cpp @@ -322,6 +322,7 @@ TEST_P(FirstIndexOffsetTests, IndexedIndirectBothOffset) { } DAWN_INSTANTIATE_TEST(FirstIndexOffsetTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/FragDepthTests.cpp b/src/dawn/tests/end2end/FragDepthTests.cpp index ec3217e6ec..0b96589bfd 100644 --- a/src/dawn/tests/end2end/FragDepthTests.cpp +++ b/src/dawn/tests/end2end/FragDepthTests.cpp @@ -224,6 +224,7 @@ TEST_P(FragDepthTests, RasterizationClipBeforeFS) { } DAWN_INSTANTIATE_TEST(FragDepthTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/GpuMemorySynchronizationTests.cpp b/src/dawn/tests/end2end/GpuMemorySynchronizationTests.cpp index 4b93539345..f19f888409 100644 --- a/src/dawn/tests/end2end/GpuMemorySynchronizationTests.cpp +++ b/src/dawn/tests/end2end/GpuMemorySynchronizationTests.cpp @@ -214,6 +214,7 @@ TEST_P(GpuMemorySyncTests, ComputePassToRenderPass) { } DAWN_INSTANTIATE_TEST(GpuMemorySyncTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -385,6 +386,7 @@ TEST_P(StorageToUniformSyncTests, ReadAfterWriteWithDifferentQueueSubmits) { } DAWN_INSTANTIATE_TEST(StorageToUniformSyncTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -646,6 +648,7 @@ TEST_P(MultipleWriteThenMultipleReadTests, OneBuffer) { } DAWN_INSTANTIATE_TEST(MultipleWriteThenMultipleReadTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/IndexFormatTests.cpp b/src/dawn/tests/end2end/IndexFormatTests.cpp index fa51f5000c..e46073da1b 100644 --- a/src/dawn/tests/end2end/IndexFormatTests.cpp +++ b/src/dawn/tests/end2end/IndexFormatTests.cpp @@ -473,18 +473,21 @@ TEST_P(LineStripPrimitiveRestartTests, Uint16PrimitiveRestart) { } DAWN_INSTANTIATE_TEST(IndexFormatTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()); DAWN_INSTANTIATE_TEST(TriangleStripPrimitiveRestartTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()); DAWN_INSTANTIATE_TEST(LineStripPrimitiveRestartTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/MaxLimitTests.cpp b/src/dawn/tests/end2end/MaxLimitTests.cpp index 0632318ae1..9ea70bbf80 100644 --- a/src/dawn/tests/end2end/MaxLimitTests.cpp +++ b/src/dawn/tests/end2end/MaxLimitTests.cpp @@ -728,6 +728,7 @@ TEST_P(MaxLimitTests, MaxFragmentCombinedOutputResources) { } DAWN_INSTANTIATE_TEST(MaxLimitTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/MemoryAllocationStressTests.cpp b/src/dawn/tests/end2end/MemoryAllocationStressTests.cpp index 59fe068468..4db3f4d85b 100644 --- a/src/dawn/tests/end2end/MemoryAllocationStressTests.cpp +++ b/src/dawn/tests/end2end/MemoryAllocationStressTests.cpp @@ -38,6 +38,7 @@ TEST_P(MemoryAllocationStressTests, LargeBuffer) { } DAWN_INSTANTIATE_TEST(MemoryAllocationStressTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/MultisampledRenderingTests.cpp b/src/dawn/tests/end2end/MultisampledRenderingTests.cpp index 11c2303216..58f5ceeff2 100644 --- a/src/dawn/tests/end2end/MultisampledRenderingTests.cpp +++ b/src/dawn/tests/end2end/MultisampledRenderingTests.cpp @@ -1130,6 +1130,7 @@ TEST_P(MultisampledRenderingTest, ResolveInto2DTextureWithAlphaToCoverageAndRast } DAWN_INSTANTIATE_TEST(MultisampledRenderingTest, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_resource_heap_tier2"}), D3D12Backend({}, {"use_d3d12_render_pass"}), diff --git a/src/dawn/tests/end2end/MultisampledSamplingTests.cpp b/src/dawn/tests/end2end/MultisampledSamplingTests.cpp index 358e98152b..dd4cf21a6a 100644 --- a/src/dawn/tests/end2end/MultisampledSamplingTests.cpp +++ b/src/dawn/tests/end2end/MultisampledSamplingTests.cpp @@ -259,6 +259,7 @@ TEST_P(MultisampledSamplingTest, SamplePositions) { } DAWN_INSTANTIATE_TEST(MultisampledSamplingTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ObjectCachingTests.cpp b/src/dawn/tests/end2end/ObjectCachingTests.cpp index 8a698849fd..d51eeaa404 100644 --- a/src/dawn/tests/end2end/ObjectCachingTests.cpp +++ b/src/dawn/tests/end2end/ObjectCachingTests.cpp @@ -445,6 +445,7 @@ TEST_P(ObjectCachingTest, SamplerDeduplication) { } DAWN_INSTANTIATE_TEST(ObjectCachingTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/OpArrayLengthTests.cpp b/src/dawn/tests/end2end/OpArrayLengthTests.cpp index c560b2ae56..a40b42d6ea 100644 --- a/src/dawn/tests/end2end/OpArrayLengthTests.cpp +++ b/src/dawn/tests/end2end/OpArrayLengthTests.cpp @@ -275,6 +275,7 @@ TEST_P(OpArrayLengthTest, Vertex) { } DAWN_INSTANTIATE_TEST(OpArrayLengthTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/PipelineCachingTests.cpp b/src/dawn/tests/end2end/PipelineCachingTests.cpp index 69e7ef1bfc..d5d8062fc0 100644 --- a/src/dawn/tests/end2end/PipelineCachingTests.cpp +++ b/src/dawn/tests/end2end/PipelineCachingTests.cpp @@ -639,6 +639,7 @@ TEST_P(SinglePipelineCachingTests, RenderPipelineBlobCacheIsolationKey) { } DAWN_INSTANTIATE_TEST(SinglePipelineCachingTests, + D3D11Backend(), D3D12Backend(), D3D12Backend({"use_dxc"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/PipelineLayoutTests.cpp b/src/dawn/tests/end2end/PipelineLayoutTests.cpp index dca4be3f26..02dabfe954 100644 --- a/src/dawn/tests/end2end/PipelineLayoutTests.cpp +++ b/src/dawn/tests/end2end/PipelineLayoutTests.cpp @@ -144,6 +144,7 @@ TEST_P(PipelineLayoutTests, ComputeAndRenderSamePipelineLayout) { } DAWN_INSTANTIATE_TEST(PipelineLayoutTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/PrimitiveStateTests.cpp b/src/dawn/tests/end2end/PrimitiveStateTests.cpp index db1fed4020..5c3a2bd7be 100644 --- a/src/dawn/tests/end2end/PrimitiveStateTests.cpp +++ b/src/dawn/tests/end2end/PrimitiveStateTests.cpp @@ -357,6 +357,7 @@ TEST_P(DepthClippingTest, UnclippedNotClamped) { } DAWN_INSTANTIATE_TEST(DepthClippingTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/PrimitiveTopologyTests.cpp b/src/dawn/tests/end2end/PrimitiveTopologyTests.cpp index 9f4d7d23f1..1ad47c7ba0 100644 --- a/src/dawn/tests/end2end/PrimitiveTopologyTests.cpp +++ b/src/dawn/tests/end2end/PrimitiveTopologyTests.cpp @@ -298,6 +298,7 @@ TEST_P(PrimitiveTopologyTest, TriangleStrip) { } DAWN_INSTANTIATE_TEST(PrimitiveTopologyTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/QueryTests.cpp b/src/dawn/tests/end2end/QueryTests.cpp index 0635c759ae..1a094910cb 100644 --- a/src/dawn/tests/end2end/QueryTests.cpp +++ b/src/dawn/tests/end2end/QueryTests.cpp @@ -1284,23 +1284,27 @@ TEST_P(TimestampQueryInsidePassesTests, FromComputePass) { } DAWN_INSTANTIATE_TEST(OcclusionQueryTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"metal_fill_empty_occlusion_queries_with_zero"}), VulkanBackend()); DAWN_INSTANTIATE_TEST(PipelineStatisticsQueryTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()); DAWN_INSTANTIATE_TEST(TimestampQueryTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()); DAWN_INSTANTIATE_TEST(TimestampQueryInsidePassesTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/QueueTests.cpp b/src/dawn/tests/end2end/QueueTests.cpp index 23e6f40ffc..2de1b49507 100644 --- a/src/dawn/tests/end2end/QueueTests.cpp +++ b/src/dawn/tests/end2end/QueueTests.cpp @@ -30,6 +30,7 @@ TEST_P(QueueTests, GetQueueSameObject) { } DAWN_INSTANTIATE_TEST(QueueTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), NullBackend(), @@ -187,6 +188,7 @@ TEST_P(QueueWriteBufferTests, UnalignedDynamicUploader) { } DAWN_INSTANTIATE_TEST(QueueWriteBufferTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -771,6 +773,7 @@ TEST_P(QueueWriteTextureTests, WriteStencilAspectAfterOtherQueueWriteTextureCall } DAWN_INSTANTIATE_TEST(QueueWriteTextureTests, + D3D11Backend(), D3D12Backend(), D3D12Backend({"d3d12_use_temp_buffer_in_depth_stencil_texture_and_buffer_" "copy_with_non_zero_buffer_offset"}), diff --git a/src/dawn/tests/end2end/QueueTimelineTests.cpp b/src/dawn/tests/end2end/QueueTimelineTests.cpp index b07ca08d54..cbdbfa44f2 100644 --- a/src/dawn/tests/end2end/QueueTimelineTests.cpp +++ b/src/dawn/tests/end2end/QueueTimelineTests.cpp @@ -96,6 +96,7 @@ TEST_P(QueueTimelineTests, OnWorkDone_MapRead) { } DAWN_INSTANTIATE_TEST(QueueTimelineTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ReadOnlyDepthStencilAttachmentTests.cpp b/src/dawn/tests/end2end/ReadOnlyDepthStencilAttachmentTests.cpp index 06e66885e9..26228c9334 100644 --- a/src/dawn/tests/end2end/ReadOnlyDepthStencilAttachmentTests.cpp +++ b/src/dawn/tests/end2end/ReadOnlyDepthStencilAttachmentTests.cpp @@ -344,12 +344,14 @@ TEST_P(ReadOnlyStencilAttachmentTests, NotSampleFromAttachment) { } DAWN_INSTANTIATE_TEST_P(ReadOnlyDepthAttachmentTests, - {D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), - MetalBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), + D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), + VulkanBackend()}, std::vector(utils::kDepthFormats.begin(), utils::kDepthFormats.end())); DAWN_INSTANTIATE_TEST_P(ReadOnlyStencilAttachmentTests, - {D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), - MetalBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), + D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), + VulkanBackend()}, std::vector(utils::kStencilFormats.begin(), utils::kStencilFormats.end())); diff --git a/src/dawn/tests/end2end/RenderAttachmentTests.cpp b/src/dawn/tests/end2end/RenderAttachmentTests.cpp index bfc71880f1..dbc095c859 100644 --- a/src/dawn/tests/end2end/RenderAttachmentTests.cpp +++ b/src/dawn/tests/end2end/RenderAttachmentTests.cpp @@ -76,6 +76,7 @@ TEST_P(RenderAttachmentTest, MoreFragmentOutputsThanAttachments) { } DAWN_INSTANTIATE_TEST(RenderAttachmentTest, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/RenderBundleTests.cpp b/src/dawn/tests/end2end/RenderBundleTests.cpp index d3e8e2f1fb..abdefab972 100644 --- a/src/dawn/tests/end2end/RenderBundleTests.cpp +++ b/src/dawn/tests/end2end/RenderBundleTests.cpp @@ -194,6 +194,7 @@ TEST_P(RenderBundleTest, BundleAndRenderPassCommands) { } DAWN_INSTANTIATE_TEST(RenderBundleTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/RenderPassLoadOpTests.cpp b/src/dawn/tests/end2end/RenderPassLoadOpTests.cpp index 8eac3edaf6..f25f5fd037 100644 --- a/src/dawn/tests/end2end/RenderPassLoadOpTests.cpp +++ b/src/dawn/tests/end2end/RenderPassLoadOpTests.cpp @@ -714,6 +714,7 @@ TEST_P(RenderPassLoadOpTests, MixedUseOfLoadOpLoadAndLoadOpClearWithBigIntegerVa } DAWN_INSTANTIATE_TEST(RenderPassLoadOpTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/RenderPassTests.cpp b/src/dawn/tests/end2end/RenderPassTests.cpp index 14e8d727e6..9a14a4a69e 100644 --- a/src/dawn/tests/end2end/RenderPassTests.cpp +++ b/src/dawn/tests/end2end/RenderPassTests.cpp @@ -166,6 +166,7 @@ TEST_P(RenderPassTest, NoCorrespondingFragmentShaderOutputs) { } DAWN_INSTANTIATE_TEST(RenderPassTest, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), @@ -225,6 +226,7 @@ TEST_P(RenderPassTest_RegressionDawn1071, ClearLowestMipOfR8Unorm) { } DAWN_INSTANTIATE_TEST(RenderPassTest_RegressionDawn1071, + D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"metal_render_r8_rg8_unorm_small_mip_to_temp_texture"}), @@ -359,6 +361,7 @@ TEST_P(RenderPassTest_RegressionDawn1389, ClearMultisubresourceAfterWriteDepth16 } DAWN_INSTANTIATE_TEST(RenderPassTest_RegressionDawn1389, + D3D11Backend(), D3D12Backend(), MetalBackend(), MetalBackend({"use_blit_for_buffer_to_depth_texture_copy"}), diff --git a/src/dawn/tests/end2end/RequiredBufferSizeInCopyTests.cpp b/src/dawn/tests/end2end/RequiredBufferSizeInCopyTests.cpp index 58c45cef65..6d5c0385a9 100644 --- a/src/dawn/tests/end2end/RequiredBufferSizeInCopyTests.cpp +++ b/src/dawn/tests/end2end/RequiredBufferSizeInCopyTests.cpp @@ -199,8 +199,9 @@ TEST_P(RequiredBufferSizeInCopyTests, MinimumBufferSize) { DAWN_INSTANTIATE_TEST_P( RequiredBufferSizeInCopyTests, - {D3D12Backend(), D3D12Backend({"d3d12_split_buffer_texture_copy_for_rows_per_image_paddings"}), - MetalBackend(), OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), + D3D12Backend({"d3d12_split_buffer_texture_copy_for_rows_per_image_paddings"}), MetalBackend(), + OpenGLBackend(), OpenGLESBackend(), VulkanBackend()}, {Type::T2BCopy, Type::B2TCopy}, {wgpu::TextureDimension::e3D, wgpu::TextureDimension::e2D}, {2u, 1u}, diff --git a/src/dawn/tests/end2end/SamplerFilterAnisotropicTests.cpp b/src/dawn/tests/end2end/SamplerFilterAnisotropicTests.cpp index f201d75d49..0a54085f0f 100644 --- a/src/dawn/tests/end2end/SamplerFilterAnisotropicTests.cpp +++ b/src/dawn/tests/end2end/SamplerFilterAnisotropicTests.cpp @@ -288,6 +288,7 @@ TEST_P(SamplerFilterAnisotropicTest, SlantedPlaneMipmap) { } DAWN_INSTANTIATE_TEST(SamplerFilterAnisotropicTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/SamplerTests.cpp b/src/dawn/tests/end2end/SamplerTests.cpp index c2dcb277fd..3960ec303b 100644 --- a/src/dawn/tests/end2end/SamplerTests.cpp +++ b/src/dawn/tests/end2end/SamplerTests.cpp @@ -205,6 +205,7 @@ TEST_P(SamplerTest, PassThroughUserFunctionParameters) { } DAWN_INSTANTIATE_TEST(SamplerTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ScissorTests.cpp b/src/dawn/tests/end2end/ScissorTests.cpp index 60e5199baf..5d9a2fab8b 100644 --- a/src/dawn/tests/end2end/ScissorTests.cpp +++ b/src/dawn/tests/end2end/ScissorTests.cpp @@ -152,6 +152,7 @@ TEST_P(ScissorTest, NoInheritanceBetweenRenderPass) { } DAWN_INSTANTIATE_TEST(ScissorTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ShaderF16Tests.cpp b/src/dawn/tests/end2end/ShaderF16Tests.cpp index 20ee517986..243118b9b0 100644 --- a/src/dawn/tests/end2end/ShaderF16Tests.cpp +++ b/src/dawn/tests/end2end/ShaderF16Tests.cpp @@ -443,6 +443,7 @@ fn FSMain(@location(0) color : vec4f) -> @location(0) vec4f { // DawnTestBase::CreateDeviceImpl always disable disallow_unsafe_apis toggle. DAWN_INSTANTIATE_TEST_P(ShaderF16Tests, { + D3D11Backend(), D3D12Backend(), D3D12Backend({"use_dxc"}), VulkanBackend(), diff --git a/src/dawn/tests/end2end/ShaderTests.cpp b/src/dawn/tests/end2end/ShaderTests.cpp index 2e91325bfc..6094ab9b42 100644 --- a/src/dawn/tests/end2end/ShaderTests.cpp +++ b/src/dawn/tests/end2end/ShaderTests.cpp @@ -1424,6 +1424,7 @@ fn main(@location(0) value : f32) -> @location(0) vec4f { } DAWN_INSTANTIATE_TEST(ShaderTests, + D3D11Backend(), D3D12Backend(), D3D12Backend({"use_dxc"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/ShaderValidationTests.cpp b/src/dawn/tests/end2end/ShaderValidationTests.cpp index 94da47fb06..9555f729fe 100644 --- a/src/dawn/tests/end2end/ShaderValidationTests.cpp +++ b/src/dawn/tests/end2end/ShaderValidationTests.cpp @@ -375,6 +375,7 @@ TEST_P(WorkgroupSizeValidationTest, ValidationAfterOverrideStorageSize) { } DAWN_INSTANTIATE_TEST(WorkgroupSizeValidationTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), NullBackend(), diff --git a/src/dawn/tests/end2end/StorageTextureTests.cpp b/src/dawn/tests/end2end/StorageTextureTests.cpp index 040363260e..1a1b4136e8 100644 --- a/src/dawn/tests/end2end/StorageTextureTests.cpp +++ b/src/dawn/tests/end2end/StorageTextureTests.cpp @@ -867,6 +867,7 @@ TEST_P(StorageTextureTests, SampledAndWriteonlyStorageTexturePingPong) { } DAWN_INSTANTIATE_TEST(StorageTextureTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -931,6 +932,7 @@ TEST_P(BGRA8UnormStorageTextureTests, WriteonlyStorageTextureInFragmentShader) { } DAWN_INSTANTIATE_TEST(BGRA8UnormStorageTextureTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/SubresourceRenderAttachmentTests.cpp b/src/dawn/tests/end2end/SubresourceRenderAttachmentTests.cpp index 9722c531d0..27f3bf9b07 100644 --- a/src/dawn/tests/end2end/SubresourceRenderAttachmentTests.cpp +++ b/src/dawn/tests/end2end/SubresourceRenderAttachmentTests.cpp @@ -172,6 +172,7 @@ TEST_P(SubresourceRenderAttachmentTest, StencilTexture) { } DAWN_INSTANTIATE_TEST(SubresourceRenderAttachmentTest, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/Texture3DTests.cpp b/src/dawn/tests/end2end/Texture3DTests.cpp index 6a6381deb6..4dee0a249c 100644 --- a/src/dawn/tests/end2end/Texture3DTests.cpp +++ b/src/dawn/tests/end2end/Texture3DTests.cpp @@ -118,6 +118,7 @@ TEST_P(Texture3DTests, Sampling) { } DAWN_INSTANTIATE_TEST(Texture3DTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/TextureFormatTests.cpp b/src/dawn/tests/end2end/TextureFormatTests.cpp index 5431e0053e..932926e592 100644 --- a/src/dawn/tests/end2end/TextureFormatTests.cpp +++ b/src/dawn/tests/end2end/TextureFormatTests.cpp @@ -897,6 +897,7 @@ TEST_P(TextureFormatTest, RGB9E5Ufloat) { } DAWN_INSTANTIATE_TEST(TextureFormatTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/TextureSubresourceTests.cpp b/src/dawn/tests/end2end/TextureSubresourceTests.cpp index 169f89d164..4d9584b58d 100644 --- a/src/dawn/tests/end2end/TextureSubresourceTests.cpp +++ b/src/dawn/tests/end2end/TextureSubresourceTests.cpp @@ -189,6 +189,7 @@ TEST_P(TextureSubresourceTest, ArrayLayersTest) { } DAWN_INSTANTIATE_TEST(TextureSubresourceTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/TextureViewTests.cpp b/src/dawn/tests/end2end/TextureViewTests.cpp index 7b8c2bb172..d28c72e605 100644 --- a/src/dawn/tests/end2end/TextureViewTests.cpp +++ b/src/dawn/tests/end2end/TextureViewTests.cpp @@ -977,6 +977,7 @@ TEST_P(TextureViewRenderingTest, SRGBReinterpretionResolveAttachment) { } DAWN_INSTANTIATE_TEST(TextureViewSamplingTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -984,6 +985,7 @@ DAWN_INSTANTIATE_TEST(TextureViewSamplingTest, VulkanBackend()); DAWN_INSTANTIATE_TEST(TextureViewRenderingTest, + D3D11Backend(), D3D12Backend(), D3D12Backend({}, {"use_d3d12_render_pass"}), MetalBackend(), @@ -1024,6 +1026,7 @@ TEST_P(TextureViewTest, DestroyedTexture) { } DAWN_INSTANTIATE_TEST(TextureViewTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1040,6 +1043,7 @@ TEST_P(TextureView3DTest, BasicTest) { } DAWN_INSTANTIATE_TEST(TextureView3DTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -1114,6 +1118,7 @@ TEST_P(TextureView1DTest, Sampling) { } DAWN_INSTANTIATE_TEST(TextureView1DTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), VulkanBackend(), diff --git a/src/dawn/tests/end2end/VertexFormatTests.cpp b/src/dawn/tests/end2end/VertexFormatTests.cpp index 34182dc62d..42c6aec826 100644 --- a/src/dawn/tests/end2end/VertexFormatTests.cpp +++ b/src/dawn/tests/end2end/VertexFormatTests.cpp @@ -829,6 +829,7 @@ TEST_P(VertexFormatTest, Sint32x4) { } DAWN_INSTANTIATE_TEST(VertexFormatTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/VertexOnlyRenderPipelineTests.cpp b/src/dawn/tests/end2end/VertexOnlyRenderPipelineTests.cpp index a02562b727..bdf9ab86da 100644 --- a/src/dawn/tests/end2end/VertexOnlyRenderPipelineTests.cpp +++ b/src/dawn/tests/end2end/VertexOnlyRenderPipelineTests.cpp @@ -307,6 +307,8 @@ TEST_P(VertexOnlyRenderPipelineTest, MultiplePass) { } DAWN_INSTANTIATE_TEST(VertexOnlyRenderPipelineTest, + D3D11Backend(), + D3D11Backend({"use_placeholder_fragment_in_vertex_only_pipeline"}), D3D12Backend(), D3D12Backend({"use_placeholder_fragment_in_vertex_only_pipeline"}), MetalBackend(), diff --git a/src/dawn/tests/end2end/VertexStateTests.cpp b/src/dawn/tests/end2end/VertexStateTests.cpp index 5b0e49b9ff..5a962aba62 100644 --- a/src/dawn/tests/end2end/VertexStateTests.cpp +++ b/src/dawn/tests/end2end/VertexStateTests.cpp @@ -645,6 +645,7 @@ TEST_P(VertexStateTest, OverlappingVertexAttributes) { } DAWN_INSTANTIATE_TEST(VertexStateTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), @@ -691,6 +692,7 @@ TEST_P(OptionalVertexStateTest, Basic) { } DAWN_INSTANTIATE_TEST(OptionalVertexStateTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ViewportOrientationTests.cpp b/src/dawn/tests/end2end/ViewportOrientationTests.cpp index 8e8f1e7182..11b7fdcb1d 100644 --- a/src/dawn/tests/end2end/ViewportOrientationTests.cpp +++ b/src/dawn/tests/end2end/ViewportOrientationTests.cpp @@ -59,6 +59,7 @@ TEST_P(ViewportOrientationTests, OriginAt0x0) { } DAWN_INSTANTIATE_TEST(ViewportOrientationTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/end2end/ViewportTests.cpp b/src/dawn/tests/end2end/ViewportTests.cpp index 5fbeed0c41..6233c4ad7c 100644 --- a/src/dawn/tests/end2end/ViewportTests.cpp +++ b/src/dawn/tests/end2end/ViewportTests.cpp @@ -220,6 +220,7 @@ TEST_P(ViewportTest, EmptyViewport) { } DAWN_INSTANTIATE_TEST(ViewportTest, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/perf_tests/BufferUploadPerf.cpp b/src/dawn/tests/perf_tests/BufferUploadPerf.cpp index 8381729de0..1e8df070bb 100644 --- a/src/dawn/tests/perf_tests/BufferUploadPerf.cpp +++ b/src/dawn/tests/perf_tests/BufferUploadPerf.cpp @@ -147,7 +147,8 @@ TEST_P(BufferUploadPerf, Run) { } DAWN_INSTANTIATE_TEST_P(BufferUploadPerf, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + VulkanBackend()}, {UploadMethod::WriteBuffer, UploadMethod::MappedAtCreation}, {UploadSize::BufferSize_1KB, UploadSize::BufferSize_64KB, UploadSize::BufferSize_1MB, UploadSize::BufferSize_4MB, diff --git a/src/dawn/tests/perf_tests/DrawCallPerf.cpp b/src/dawn/tests/perf_tests/DrawCallPerf.cpp index 640e156137..cf89f9bfe6 100644 --- a/src/dawn/tests/perf_tests/DrawCallPerf.cpp +++ b/src/dawn/tests/perf_tests/DrawCallPerf.cpp @@ -597,7 +597,7 @@ TEST_P(DrawCallPerf, Run) { DAWN_INSTANTIATE_TEST_P( DrawCallPerf, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), VulkanBackend(), + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), VulkanBackend(), VulkanBackend({"skip_validation"})}, { // Baseline diff --git a/src/dawn/tests/perf_tests/ShaderRobustnessPerf.cpp b/src/dawn/tests/perf_tests/ShaderRobustnessPerf.cpp index 3b174ad017..5f2553b293 100644 --- a/src/dawn/tests/perf_tests/ShaderRobustnessPerf.cpp +++ b/src/dawn/tests/perf_tests/ShaderRobustnessPerf.cpp @@ -497,7 +497,8 @@ TEST_P(ShaderRobustnessPerf, Run) { } DAWN_INSTANTIATE_TEST_P(ShaderRobustnessPerf, - {D3D12Backend(), D3D12Backend({"disable_robustness"}, {}), MetalBackend(), + {D3D11Backend(), D3D11Backend({"disable_robustness"}, {}), D3D12Backend(), + D3D12Backend({"disable_robustness"}, {}), MetalBackend(), MetalBackend({"disable_robustness"}, {}), OpenGLBackend(), OpenGLBackend({"disable_robustness"}, {}), VulkanBackend(), VulkanBackend({"disable_robustness"}, {})}, diff --git a/src/dawn/tests/perf_tests/SubresourceTrackingPerf.cpp b/src/dawn/tests/perf_tests/SubresourceTrackingPerf.cpp index e3ccb6f586..eacaab1333 100644 --- a/src/dawn/tests/perf_tests/SubresourceTrackingPerf.cpp +++ b/src/dawn/tests/perf_tests/SubresourceTrackingPerf.cpp @@ -144,6 +144,7 @@ TEST_P(SubresourceTrackingPerf, Run) { } DAWN_INSTANTIATE_TEST_P(SubresourceTrackingPerf, - {D3D12Backend(), MetalBackend(), OpenGLBackend(), VulkanBackend()}, + {D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), + VulkanBackend()}, {1, 4, 16, 256}, {2, 3, 8}); diff --git a/src/dawn/tests/white_box/BufferAllocatedSizeTests.cpp b/src/dawn/tests/white_box/BufferAllocatedSizeTests.cpp index cfa90260ab..e09e371462 100644 --- a/src/dawn/tests/white_box/BufferAllocatedSizeTests.cpp +++ b/src/dawn/tests/white_box/BufferAllocatedSizeTests.cpp @@ -36,12 +36,17 @@ class BufferAllocatedSizeTests : public DawnTest { // Test expected allocated size for buffers with uniform usage TEST_P(BufferAllocatedSizeTests, UniformUsage) { + // D3D11 backend doesn't support buffer with both uniform and storage usage. + DAWN_SUPPRESS_TEST_IF(IsD3D11()); + // Some backends have a minimum buffer size, so make sure // we allocate above that. constexpr uint32_t kMinBufferSize = 4u; uint32_t requiredBufferAlignment = 1u; - if (IsD3D12()) { + if (IsD3D11()) { + requiredBufferAlignment = 256u; + } else if (IsD3D12()) { requiredBufferAlignment = 256u; } else if (IsMetal()) { requiredBufferAlignment = 16u; @@ -78,6 +83,7 @@ TEST_P(BufferAllocatedSizeTests, UniformUsage) { } DAWN_INSTANTIATE_TEST(BufferAllocatedSizeTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), OpenGLBackend(), diff --git a/src/dawn/tests/white_box/InternalStorageBufferBindingTests.cpp b/src/dawn/tests/white_box/InternalStorageBufferBindingTests.cpp index 0be3d3b4b7..0b634394df 100644 --- a/src/dawn/tests/white_box/InternalStorageBufferBindingTests.cpp +++ b/src/dawn/tests/white_box/InternalStorageBufferBindingTests.cpp @@ -108,6 +108,7 @@ TEST_P(InternalStorageBufferBindingTests, QueryResolveBufferBoundAsInternalStora } DAWN_INSTANTIATE_TEST(InternalStorageBufferBindingTests, + D3D11Backend(), D3D12Backend(), MetalBackend(), VulkanBackend()); diff --git a/src/dawn/tests/white_box/QueryInternalShaderTests.cpp b/src/dawn/tests/white_box/QueryInternalShaderTests.cpp index 296bbaaf91..b63453cff4 100644 --- a/src/dawn/tests/white_box/QueryInternalShaderTests.cpp +++ b/src/dawn/tests/white_box/QueryInternalShaderTests.cpp @@ -224,4 +224,8 @@ TEST_P(QueryInternalShaderTests, TimestampComputeShader) { } } -DAWN_INSTANTIATE_TEST(QueryInternalShaderTests, D3D12Backend(), MetalBackend(), VulkanBackend()); +DAWN_INSTANTIATE_TEST(QueryInternalShaderTests, + D3D11Backend(), + D3D12Backend(), + MetalBackend(), + VulkanBackend());