Merge dynamic_state_tests
authorPyry Haulos <phaulos@google.com>
Sun, 20 Dec 2015 22:01:01 +0000 (07:01 +0900)
committerPyry Haulos <phaulos@google.com>
Sun, 20 Dec 2015 22:01:01 +0000 (07:01 +0900)
1  2 
external/vulkancts/modules/vulkan/CMakeLists.txt
external/vulkancts/modules/vulkan/vktTestPackage.cpp

@@@ -5,9 -5,8 +5,10 @@@ add_subdirectory(pipeline
  add_subdirectory(binding_model)
  add_subdirectory(spirv_assembly)
  add_subdirectory(shaderrender)
 +add_subdirectory(shaderexecutor)
  add_subdirectory(memory)
 +add_subdirectory(ubo)
+ add_subdirectory(dynamic_state)
  
  include_directories(
        api
        binding_model
        spirv_assembly
        shaderrender
 +      shaderexecutor
        memory
 +      ubo
+       dynamic_state
        )
  
  set(DEQP_VK_COMMON_SRCS
@@@ -42,9 -42,8 +44,10 @@@ set(DEQP_VK_COMMON_LIB
        deqp-vk-binding-model
        deqp-vk-spirv-assembly
        deqp-vk-shaderrender
 +      deqp-vk-shaderexecutor
        deqp-vk-memory
 +      deqp-vk-ubo
+       deqp-vk-dynamic-state
        )
  
  if (DE_OS_IS_WIN32 OR DE_OS_IS_UNIX OR DE_OS_IS_OSX)
  #include "vktRenderPassTests.hpp"
  #include "vktMemoryTests.hpp"
  #include "vktShaderRenderDiscardTests.hpp"
 +#include "vktShaderRenderIndexingTests.hpp"
 +#include "vktShaderRenderLoopTests.hpp"
 +#include "vktShaderRenderMatrixTests.hpp"
 +#include "vktShaderRenderOperatorTests.hpp"
 +#include "vktShaderRenderReturnTests.hpp"
 +#include "vktShaderRenderStructTests.hpp"
 +#include "vktShaderRenderSwitchTests.hpp"
 +#include "vktShaderExecutorTests.hpp"
 +#include "vktUniformBlockTests.hpp"
+ #include "vktDynamicStateTests.hpp"
  
  #include <vector>
  #include <sstream>
@@@ -310,7 -294,7 +311,8 @@@ void TestPackage::init (void
        addChild(createGlslTests                        (m_testCtx));
        addChild(createRenderPassTests          (m_testCtx));
        addChild(memory::createTests            (m_testCtx));
 +      addChild(ubo::createTests                       (m_testCtx));
+       addChild(DynamicState::createTests      (m_testCtx));
  }
  
  } // vkt