1 /*-------------------------------------------------------------------------
2 * Vulkan Conformance Tests
3 * ------------------------
4 *
5 * Copyright (c) 2016 Google Inc.
6 *
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
10 *
11 * http://www.apache.org/licenses/LICENSE-2.0
12 *
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 *
19 *//*!
20 * \file
21 * \brief WSI Tests
22 *//*--------------------------------------------------------------------*/
23
24 #include "vktWsiTests.hpp"
25 #include "vktTestGroupUtil.hpp"
26 #include "vkWsiUtil.hpp"
27
28 #include "vktWsiAcquireDrmDisplayTests.hpp"
29 #include "vktWsiSurfaceTests.hpp"
30 #include "vktWsiSwapchainTests.hpp"
31 #include "vktWsiDisplayTests.hpp"
32 #include "vktWsiIncrementalPresentTests.hpp"
33 #include "vktWsiDisplayControlTests.hpp"
34 #include "vktWsiDisplayTimingTests.hpp"
35 #include "vktWsiSharedPresentableImageTests.hpp"
36 #include "vktWsiColorSpaceTests.hpp"
37 #include "vktWsiFullScreenExclusiveTests.hpp"
38 #include "vktWsiPresentIdWaitTests.hpp"
39 #include "vktWsiMaintenance1Tests.hpp"
40
41 namespace vkt
42 {
43 namespace wsi
44 {
45
46 namespace
47 {
48
createTypeSpecificTests(tcu::TestCaseGroup * testGroup,vk::wsi::Type wsiType)49 void createTypeSpecificTests(tcu::TestCaseGroup *testGroup, vk::wsi::Type wsiType)
50 {
51 // VkSurface Tests
52 addTestGroup(testGroup, "surface", createSurfaceTests, wsiType);
53 // VkSwapchain Tests
54 addTestGroup(testGroup, "swapchain", createSwapchainTests, wsiType);
55 // Incremental present tests
56 addTestGroup(testGroup, "incremental_present", createIncrementalPresentTests, wsiType);
57 // Display Timing Tests
58 addTestGroup(testGroup, "display_timing", createDisplayTimingTests, wsiType);
59 // VK_KHR_shared_presentable_image tests
60 addTestGroup(testGroup, "shared_presentable_image", createSharedPresentableImageTests, wsiType);
61 // ColorSpace tests
62 addTestGroup(testGroup, "colorspace", createColorSpaceTests, wsiType);
63 // ColorSpace compare tests
64 addTestGroup(testGroup, "colorspace_compare", createColorspaceCompareTests, wsiType);
65 // VK_EXT_full_screen_exclusive tests
66 addTestGroup(testGroup, "full_screen_exclusive", createFullScreenExclusiveTests, wsiType);
67 // VK_KHR_present_(id|wait) tests
68 addTestGroup(testGroup, "present_id_wait", createPresentIdWaitTests, wsiType);
69 // VK_KHR_(surface|swapchain)_maintenance1 tests
70 addTestGroup(testGroup, "maintenance1", createMaintenance1Tests, wsiType);
71 }
72
createWsiTests(tcu::TestCaseGroup * apiTests)73 void createWsiTests(tcu::TestCaseGroup *apiTests)
74 {
75 for (int typeNdx = 0; typeNdx < vk::wsi::TYPE_LAST; ++typeNdx)
76 {
77 const vk::wsi::Type wsiType = (vk::wsi::Type)typeNdx;
78
79 addTestGroup(apiTests, getName(wsiType), createTypeSpecificTests, wsiType);
80 }
81
82 // Display coverage tests
83 addTestGroup(apiTests, "display", createDisplayCoverageTests);
84 // Display Control Tests
85 addTestGroup(apiTests, "display_control", createDisplayControlTests);
86 // Acquire Drm display tests
87 addTestGroup(apiTests, "acquire_drm_display", createAcquireDrmDisplayTests);
88 }
89
90 } // namespace
91
createTests(tcu::TestContext & testCtx,const std::string & name)92 tcu::TestCaseGroup *createTests(tcu::TestContext &testCtx, const std::string &name)
93 {
94 return createTestGroup(testCtx, name.c_str(), createWsiTests);
95 }
96
97 } // namespace wsi
98 } // namespace vkt
99