diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-05-29 01:09:48 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-05-29 01:09:48 +0000 |
| commit | cd27f5affb46c349987902aa31014500d5fbef79 (patch) | |
| tree | 79c39c72242c9d08a250dd35412b036f4485224a /Tests/TestApp/src/TestPSOCompatibility.cpp | |
| parent | Updated shader resource layout test (diff) | |
| download | DiligentEngine-cd27f5affb46c349987902aa31014500d5fbef79.tar.gz DiligentEngine-cd27f5affb46c349987902aa31014500d5fbef79.zip | |
Updated multiple tests
Diffstat (limited to 'Tests/TestApp/src/TestPSOCompatibility.cpp')
| -rw-r--r-- | Tests/TestApp/src/TestPSOCompatibility.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/TestApp/src/TestPSOCompatibility.cpp b/Tests/TestApp/src/TestPSOCompatibility.cpp index f14f22d..3abd3a6 100644 --- a/Tests/TestApp/src/TestPSOCompatibility.cpp +++ b/Tests/TestApp/src/TestPSOCompatibility.cpp @@ -268,10 +268,10 @@ TestPSOCompatibility::TestPSOCompatibility(IRenderDevice *pDevice ) : auto PSO_TexArr = CreateTestPSO(VS0, PS_TexArr); auto PSO_ArrOfTex = CreateTestPSO(VS0, PS_ArrOfTex); VERIFY_EXPR(PSO_Tex->IsCompatibleWith(PSO_Tex2)); - if(DevType!=DeviceType::D3D12) + if(DevType!=DeviceType::D3D12 && DevType != DeviceType::Vulkan) VERIFY_EXPR(!PSO_Tex->IsCompatibleWith(PSO_TexArr)); VERIFY_EXPR(!PSO_Tex->IsCompatibleWith(PSO_ArrOfTex)); - if (DevType != DeviceType::D3D12) + if (DevType != DeviceType::D3D12 && DevType != DeviceType::Vulkan) VERIFY_EXPR(!PSO_Tex2->IsCompatibleWith(PSO_TexArr)); VERIFY_EXPR(!PSO_Tex2->IsCompatibleWith(PSO_ArrOfTex)); VERIFY_EXPR(!PSO_TexArr->IsCompatibleWith(PSO_ArrOfTex)); |
