summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src/TestPSOCompatibility.cpp
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2018-05-29 01:09:48 +0000
committerEgor Yusov <egor.yusov@gmail.com>2018-05-29 01:09:48 +0000
commitcd27f5affb46c349987902aa31014500d5fbef79 (patch)
tree79c39c72242c9d08a250dd35412b036f4485224a /Tests/TestApp/src/TestPSOCompatibility.cpp
parentUpdated shader resource layout test (diff)
downloadDiligentEngine-cd27f5affb46c349987902aa31014500d5fbef79.tar.gz
DiligentEngine-cd27f5affb46c349987902aa31014500d5fbef79.zip
Updated multiple tests
Diffstat (limited to 'Tests/TestApp/src/TestPSOCompatibility.cpp')
-rw-r--r--Tests/TestApp/src/TestPSOCompatibility.cpp4
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));