From 921a995810a60528a71bbea1d4299155742af9d4 Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Sat, 14 Apr 2018 13:14:51 -0700 Subject: Moved primitive topology to pipeline state --- Tests/TestApp/src/TestTextureCreation.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Tests/TestApp/src/TestTextureCreation.cpp') diff --git a/Tests/TestApp/src/TestTextureCreation.cpp b/Tests/TestApp/src/TestTextureCreation.cpp index ae938fd..2ee8028 100644 --- a/Tests/TestApp/src/TestTextureCreation.cpp +++ b/Tests/TestApp/src/TestTextureCreation.cpp @@ -40,6 +40,10 @@ #include "TestCreateObjFromNativeResGL.h" #endif +#if VULKAN_SUPPORTED +#include "TestCreateObjFromNativeResVK.h" +#endif + using namespace Diligent; class TextureCreationVerifier @@ -75,6 +79,12 @@ public: break; #endif +#if VULKAN_SUPPORTED + case DeviceType::Vulkan: + m_pTestCreateObjFromNativeRes.reset(new TestCreateObjFromNativeResVK(pDevice)); + break; +#endif + default: UNEXPECTED("Unexpected device type"); } } -- cgit v1.2.3