Merge 78-multisample-tests
authorPyry Haulos <phaulos@google.com>
Wed, 16 Dec 2015 19:13:08 +0000 (11:13 -0800)
committerPyry Haulos <phaulos@google.com>
Wed, 16 Dec 2015 19:13:08 +0000 (11:13 -0800)
Change-Id: I0d2a4fdb49a34bfe3657f52b8e82f111061227e1

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

@@@ -40,7 -40,7 +40,8 @@@
  #include "vktPipelineImageTests.hpp"
  #include "vktPipelineSamplerTests.hpp"
  #include "vktPipelineImageViewTests.hpp"
 +#include "vktPipelinePushConstantTests.hpp"
+ #include "vktPipelineMultisampleTests.hpp"
  #include "deUniquePtr.hpp"
  
  namespace vkt
@@@ -52,13 -52,13 +53,14 @@@ 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(createPushConstantTests(testCtx));
 -      pipelineTests->addChild(createMultisampleTests(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));
  
        return pipelineTests.release();
  }