Merge 30-vertex-input-tests
authorPyry Haulos <phaulos@google.com>
Thu, 17 Dec 2015 00:29:16 +0000 (16:29 -0800)
committerPyry Haulos <phaulos@google.com>
Thu, 17 Dec 2015 00:35:41 +0000 (16:35 -0800)
Change-Id: Ieae77cd894e451a3adc3c5ad1ac30cb6ed3beb84

1  2 
external/vulkancts/modules/vulkan/pipeline/CMakeLists.txt
external/vulkancts/modules/vulkan/pipeline/vktPipelineTests.cpp

  #include "vktPipelineBlendTests.hpp"
  #include "vktPipelineDepthTests.hpp"
  #include "vktPipelineImageTests.hpp"
 +#include "vktPipelineInputAssemblyTests.hpp"
  #include "vktPipelineSamplerTests.hpp"
  #include "vktPipelineImageViewTests.hpp"
 +#include "vktPipelinePushConstantTests.hpp"
 +#include "vktPipelineMultisampleTests.hpp"
+ #include "vktPipelineVertexInputTests.hpp"
  #include "deUniquePtr.hpp"
  
  namespace vkt
@@@ -54,15 -52,13 +55,16 @@@ tcu::TestCaseGroup* createTests (tcu::T
  {
        de::MovePtr<tcu::TestCaseGroup> pipelineTests (new tcu::TestCaseGroup(testCtx, "pipeline", "Pipeline Tests"));
  
 -      pipelineTests->addChild(createStencilTests(testCtx));
 -      pipelineTests->addChild(createBlendTests(testCtx));
 -      pipelineTests->addChild(createDepthTests(testCtx));
 -      pipelineTests->addChild(createImageTests(testCtx));
 -      pipelineTests->addChild(createSamplerTests(testCtx));
 -      pipelineTests->addChild(createImageViewTests(testCtx));
 -      pipelineTests->addChild(createVertexInputTests(testCtx));
 +      pipelineTests->addChild(createStencilTests              (testCtx));
 +      pipelineTests->addChild(createBlendTests                (testCtx));
 +      pipelineTests->addChild(createDepthTests                (testCtx));
 +      pipelineTests->addChild(createImageTests                (testCtx));
 +      pipelineTests->addChild(createSamplerTests              (testCtx));
 +      pipelineTests->addChild(createImageViewTests    (testCtx));
 +      pipelineTests->addChild(createPushConstantTests (testCtx));
 +      pipelineTests->addChild(createMultisampleTests  (testCtx));
++      pipelineTests->addChild(createVertexInputTests  (testCtx));
 +      pipelineTests->addChild(createInputAssemblyTests(testCtx));
  
        return pipelineTests.release();
  }