Home
last modified time | relevance | path

Searched refs:swapchainInfo (Results 1 – 7 of 7) sorted by relevance

/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSwapchainTests.cpp1044 const VkSwapchainCreateInfoKHR swapchainInfo = in testImageSwapchainCreateInfo() local
1067 …e<VkSwapchainKHR> swapchain (createSwapchainKHR(devHelper.vkd, *devHelper.device, &swapchainInfo)); in testImageSwapchainCreateInfo()
1361 …const VkSwapchainCreateInfoKHR swapchainInfo = getBasicSwapchainParameters(wsiType, instHelper.… in basicRenderTest() local
1362 const Unique<VkSwapchainKHR> swapchain (createSwapchainKHR(vkd, device, &swapchainInfo)); in basicRenderTest()
1376 swapchainInfo.imageFormat, in basicRenderTest()
1377 tcu::UVec2(swapchainInfo.imageExtent.width, swapchainInfo.imageExtent.height)); in basicRenderTest()
1588 vector<VkSwapchainCreateInfoKHR> swapchainInfo; in multiSwapchainRenderTest() local
1594swapchainInfo.emplace_back(getBasicSwapchainParameters(params.wsiType, instHelper.vki, devHelper.p… in multiSwapchainRenderTest()
1595 swapchain.emplace_back(createSwapchainKHR(vkd, device, &swapchainInfo.back())); in multiSwapchainRenderTest()
1615 swapchainInfo[i].imageFormat, in multiSwapchainRenderTest()
[all …]
DvktWsiColorSpaceTests.cpp548 const VkSwapchainCreateInfoKHR swapchainInfo = getBasicSwapchainParameters(params.wsiType, in colorspaceCompareTest() local
556 const Unique<VkSwapchainKHR> swapchain (createSwapchainKHR(vkd, device, &swapchainInfo)); in colorspaceCompareTest()
567 swapchainInfo.imageFormat, in colorspaceCompareTest()
568 tcu::UVec2(swapchainInfo.imageExtent.width, swapchainInfo.imageExtent.height)); in colorspaceCompareTest()
679 …const VkSwapchainCreateInfoKHR swapchainInfo = getBasicSwapchainParameters(wsiType, instHelper.… in surfaceFormatRenderTest() local
680 const Unique<VkSwapchainKHR> swapchain (createSwapchainKHR(vkd, device, &swapchainInfo)); in surfaceFormatRenderTest()
694 swapchainInfo.imageFormat, in surfaceFormatRenderTest()
695 tcu::UVec2(swapchainInfo.imageExtent.width, swapchainInfo.imageExtent.height)); in surfaceFormatRenderTest()
DvktWsiFullScreenExclusiveTests.cpp416 …VkSwapchainCreateInfoKHR swapchainInfo = getBasicSwapchainParameters(testParams.wsiType, in… in fullScreenExclusiveTest() local
418 swapchainInfo.pNext = &fseInfo; in fullScreenExclusiveTest()
430 VkResult result = vkd.createSwapchainKHR(device, &swapchainInfo, DE_NULL, &object); in fullScreenExclusiveTest()
454 swapchainInfo.imageFormat, in fullScreenExclusiveTest()
455 tcu::UVec2(swapchainInfo.imageExtent.width, swapchainInfo.imageExtent.height)); in fullScreenExclusiveTest()
/external/angle/src/libANGLE/renderer/vulkan/
DSurfaceVk.cpp1036 VkSwapchainCreateInfoKHR swapchainInfo = {}; in createSwapChain() local
1037 swapchainInfo.sType = VK_STRUCTURE_TYPE_SWAPCHAIN_CREATE_INFO_KHR; in createSwapChain()
1038 swapchainInfo.flags = mState.hasProtectedContent() ? VK_SWAPCHAIN_CREATE_PROTECTED_BIT_KHR : 0; in createSwapChain()
1039 swapchainInfo.surface = mSurface; in createSwapChain()
1040 swapchainInfo.minImageCount = mMinImageCount; in createSwapChain()
1041 swapchainInfo.imageFormat = nativeFormat; in createSwapChain()
1042 swapchainInfo.imageColorSpace = MapEglColorSpaceToVkColorSpace( in createSwapChain()
1045 swapchainInfo.imageExtent.width = std::max(rotatedExtents.width, 1); in createSwapChain()
1046 swapchainInfo.imageExtent.height = std::max(rotatedExtents.height, 1); in createSwapChain()
1047 swapchainInfo.imageArrayLayers = 1; in createSwapChain()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/protected_memory/
DvktProtectedMemWsiSwapchainTests.cpp1140 const vk::VkSwapchainCreateInfoKHR swapchainInfo = getBasicSwapchainParameters(wsiType, in basicRenderTest() local
1146 …const vk::Unique<vk::VkSwapchainKHR> swapchain (createSwapchainKHR(vkd, device, &swapchainInfo in basicRenderTest()
1152 swapchainInfo.imageFormat, in basicRenderTest()
1153 tcu::UVec2(swapchainInfo.imageExtent.width, swapchainInfo.imageExtent.height)); in basicRenderTest()
/external/deqp/external/vulkancts/modules/vulkan/image/
DvktImageMutableTests.cpp1997 const VkSwapchainCreateInfoKHR swapchainInfo = in makeSwapchain() local
2020 return createSwapchainKHR(vk, device, &swapchainInfo); in makeSwapchain()
/external/swiftshader/src/Vulkan/
DlibVulkan.cpp2902 auto swapchainInfo = reinterpret_cast<VkBindImageMemorySwapchainInfoKHR const *>(extInfo); in vkBindImageMemory2() local
2903 … memory = vk::Cast(swapchainInfo->swapchain)->getImage(swapchainInfo->imageIndex).getImageMemory(); in vkBindImageMemory2()