Home
last modified time | relevance | path

Searched refs:wsiType (Results 1 – 20 of 20) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSurfaceTests.cpp177 Type wsiType, in createInstanceWithWsi() argument
184 extensions.push_back(getExtensionName(wsiType)); in createInstanceWithWsi()
197 InstanceHelper (Context& context, Type wsiType, const VkAllocationCallbacks* pAllocator = DE_NULL) in InstanceHelper()
202 wsiType, in InstanceHelper()
208 …InstanceHelper (Context& context, Type wsiType, const vector<string>& extensions, const VkAllocati… in InstanceHelper()
213 wsiType, in InstanceHelper()
222 Type wsiType) in createDisplay() argument
226 return MovePtr<Display>(platform.createWsiDisplay(wsiType)); in createDisplay()
230 if (isExtensionSupported(supportedExtensions, RequiredExtension(getExtensionName(wsiType)))) in createDisplay()
262 Type wsiType, in NativeObjects()
[all …]
DvktWsiTests.cpp42 void createTypeSpecificTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createTypeSpecificTests() argument
44 addTestGroup(testGroup, "surface", "VkSurface Tests", createSurfaceTests, wsiType); in createTypeSpecificTests()
45 addTestGroup(testGroup, "swapchain", "VkSwapchain Tests", createSwapchainTests, wsiType); in createTypeSpecificTests()
46 …Group, "incremental_present", "Incremental present tests", createIncrementalPresentTests, wsiType); in createTypeSpecificTests()
47 …tGroup(testGroup, "display_timing", "Display Timing Tests", createDisplayTimingTests, wsiType); in createTypeSpecificTests()
48 …table_image", "VK_KHR_shared_presentable_image tests", createSharedPresentableImageTests, wsiType); in createTypeSpecificTests()
55 const vk::wsi::Type wsiType = (vk::wsi::Type)typeNdx; in createWsiTests() local
57 addTestGroup(apiTests, getName(wsiType), "", createTypeSpecificTests, wsiType); in createWsiTests()
DvktWsiSwapchainTests.cpp91 Type wsiType, in createInstanceWithWsi() argument
97 extensions.push_back(getExtensionName(wsiType)); in createInstanceWithWsi()
206 InstanceHelper (Context& context, Type wsiType, const VkAllocationCallbacks* pAllocator = DE_NULL) in InstanceHelper()
211 wsiType, in InstanceHelper()
245 Type wsiType) in createDisplay() argument
249 return MovePtr<Display>(platform.createWsiDisplay(wsiType)); in createDisplay()
253 if (isExtensionSupported(supportedExtensions, RequiredExtension(getExtensionName(wsiType)))) in createDisplay()
285 Type wsiType, in NativeObjects()
287 …eDisplay(context.getTestContext().getPlatform().getVulkanPlatform(), supportedExtensions, wsiType)) in NativeObjects()
328 Type wsiType; member
[all …]
DvktWsiSharedPresentableImageTests.cpp81 vk::wsi::Type wsiType) in createInstanceWithWsi() argument
90 extensions.push_back(getExtensionName(wsiType)); in createInstanceWithWsi()
188 vk::wsi::Type wsiType) in createDisplay() argument
192 return de::MovePtr<vk::wsi::Display>(platform.createWsiDisplay(wsiType)); in createDisplay()
196 if (isExtensionSupported(supportedExtensions, vk::RequiredExtension(getExtensionName(wsiType)))) in createDisplay()
221 bool wsiTypeSupportsScaling (vk::wsi::Type wsiType) in wsiTypeSupportsScaling() argument
223 …return vk::wsi::getPlatformProperties(wsiType).swapchainExtent == vk::wsi::PlatformProperties::SWA… in wsiTypeSupportsScaling()
733 vk::wsi::Type wsiType; member
927 , m_instance (createInstanceWithWsi(m_vkp, m_instanceExtensions, testConfig.wsiType)) in SharedPresentableImageTestInstance()
930 …text.getTestContext().getPlatform().getVulkanPlatform(), m_instanceExtensions, testConfig.wsiType)) in SharedPresentableImageTestInstance()
[all …]
DvktWsiIncrementalPresentTests.cpp81 vk::wsi::Type wsiType) in createInstanceWithWsi() argument
86 extensions.push_back(getExtensionName(wsiType)); in createInstanceWithWsi()
184 vk::wsi::Type wsiType) in createDisplay() argument
188 return de::MovePtr<vk::wsi::Display>(platform.createWsiDisplay(wsiType)); in createDisplay()
192 if (isExtensionSupported(supportedExtensions, vk::RequiredExtension(getExtensionName(wsiType)))) in createDisplay()
885 vk::wsi::Type wsiType; member
1054 , m_instance (createInstanceWithWsi(m_vkp, m_instanceExtensions, testConfig.wsiType)) in IncrementalPresentTestInstance()
1057 …text.getTestContext().getPlatform().getVulkanPlatform(), m_instanceExtensions, testConfig.wsiType)) in IncrementalPresentTestInstance()
1059 …, m_surface (vk::wsi::createSurface(m_vki, *m_instance, testConfig.wsiType, *m_nativeDisplay, … in IncrementalPresentTestInstance()
1396 void createIncrementalPresentTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createIncrementalPresentTests() argument
[all …]
DvktWsiDisplayTimingTests.cpp78 vk::wsi::Type wsiType) in createInstanceWithWsi() argument
83 extensions.push_back(getExtensionName(wsiType)); in createInstanceWithWsi()
181 vk::wsi::Type wsiType) in createDisplay() argument
185 return de::MovePtr<vk::wsi::Display>(platform.createWsiDisplay(wsiType)); in createDisplay()
189 if (isExtensionSupported(supportedExtensions, vk::RequiredExtension(getExtensionName(wsiType)))) in createDisplay()
768 vk::wsi::Type wsiType; member
933 , m_instance (createInstanceWithWsi(m_vkp, m_instanceExtensions, testConfig.wsiType)) in DisplayTimingTestInstance()
936 …text.getTestContext().getPlatform().getVulkanPlatform(), m_instanceExtensions, testConfig.wsiType)) in DisplayTimingTestInstance()
938 …, m_surface (vk::wsi::createSurface(m_vki, *m_instance, testConfig.wsiType, *m_nativeDisplay, … in DisplayTimingTestInstance()
1407 void createDisplayTimingTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType) in createDisplayTimingTests() argument
[all …]
DvktWsiSharedPresentableImageTests.hpp35 void createSharedPresentableImageTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiIncrementalPresentTests.hpp35 void createIncrementalPresentTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiSurfaceTests.hpp35 void createSurfaceTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiSwapchainTests.hpp35 void createSwapchainTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
DvktWsiDisplayTimingTests.hpp35 void createDisplayTimingTests (tcu::TestCaseGroup* testGroup, vk::wsi::Type wsiType);
/external/deqp/external/vulkancts/framework/vulkan/
DvkWsiUtil.cpp36 const char* getName (Type wsiType) in getName() argument
47 return de::getSizedArrayElement<TYPE_LAST>(s_names, wsiType); in getName()
50 const char* getExtensionName (Type wsiType) in getExtensionName() argument
61 return de::getSizedArrayElement<TYPE_LAST>(s_extNames, wsiType); in getExtensionName()
64 const PlatformProperties& getPlatformProperties (Type wsiType) in getPlatformProperties() argument
120 return de::getSizedArrayElement<TYPE_LAST>(s_properties, wsiType); in getPlatformProperties()
125 Type wsiType, in createSurface() argument
134 switch (wsiType) in createSurface()
238 Type wsiType, in createSurface() argument
244 VK_CHECK(createSurface(vki, instance, wsiType, nativeDisplay, nativeWindow, pAllocator, &object)); in createSurface()
DvkWsiUtil.hpp60 const char* getName (Type wsiType);
61 const char* getExtensionName (Type wsiType);
63 const PlatformProperties& getPlatformProperties (Type wsiType);
67 Type wsiType,
75 Type wsiType,
DvkPlatform.hpp140 virtual wsi::Display* createWsiDisplay (wsi::Type wsiType) const;
/external/deqp/framework/platform/win32/
DtcuWin32VulkanPlatform.cpp208 vk::wsi::Display* VulkanPlatform::createWsiDisplay (vk::wsi::Type wsiType) const in createWsiDisplay()
210 if (wsiType != vk::wsi::TYPE_WIN32) in createWsiDisplay()
DtcuWin32VulkanPlatform.hpp42 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
/external/deqp/framework/platform/lnx/
DtcuLnxVulkanPlatform.hpp40 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
DtcuLnxVulkanPlatform.cpp203 vk::wsi::Display* VulkanPlatform::createWsiDisplay (vk::wsi::Type wsiType) const in createWsiDisplay()
205 switch(wsiType) in createWsiDisplay()
/external/deqp/framework/platform/android/
DtcuAndroidPlatform.hpp57 vk::wsi::Display* createWsiDisplay (vk::wsi::Type wsiType) const;
DtcuAndroidPlatform.cpp337 vk::wsi::Display* Platform::createWsiDisplay (vk::wsi::Type wsiType) const in createWsiDisplay()
339 if (wsiType == vk::wsi::TYPE_ANDROID) in createWsiDisplay()