Home
last modified time | relevance | path

Searched refs:swapchainExtent (Results 1 – 6 of 6) sorted by relevance

/external/deqp/external/vulkancts/framework/vulkan/
DvkWsiUtil.hpp55 SwapchainExtent swapchainExtent; member
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSwapchainTests.cpp360 (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE in generateSwapchainParameterCases()
412 … if (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE || in generateSwapchainParameterCases()
413 … platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SCALED_TO_WINDOW_SIZE) in generateSwapchainParameterCases()
423 if (platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE) in generateSwapchainParameterCases()
429 …if (platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WINDOW_S… in generateSwapchainParameterCases()
719 (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WINDOW_SIZE in getBasicSwapchainParameters()
1489 …DE_ASSERT(platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WI… in resizeSwapchainTest()
1677 …if (platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WINDOW_S… in populateModifyGroup()
DvktWsiSharedPresentableImageTests.cpp223 …return vk::wsi::getPlatformProperties(wsiType).swapchainExtent == vk::wsi::PlatformProperties::SWA… in wsiTypeSupportsScaling()
DvktWsiIncrementalPresentTests.cpp1425 …].scaling != SCALING_NONE && vk::wsi::getPlatformProperties(wsiType).swapchainExtent != vk::wsi::P… in createIncrementalPresentTests()
/external/vulkan-validation-layers/demos/
Dcube.c890 VkExtent2D swapchainExtent; in demo_prepare_buffers() local
896 swapchainExtent.width = demo->width; in demo_prepare_buffers()
897 swapchainExtent.height = demo->height; in demo_prepare_buffers()
899 if (swapchainExtent.width < surfCapabilities.minImageExtent.width) { in demo_prepare_buffers()
900 swapchainExtent.width = surfCapabilities.minImageExtent.width; in demo_prepare_buffers()
901 } else if (swapchainExtent.width > surfCapabilities.maxImageExtent.width) { in demo_prepare_buffers()
902 swapchainExtent.width = surfCapabilities.maxImageExtent.width; in demo_prepare_buffers()
905 if (swapchainExtent.height < surfCapabilities.minImageExtent.height) { in demo_prepare_buffers()
906 swapchainExtent.height = surfCapabilities.minImageExtent.height; in demo_prepare_buffers()
907 } else if (swapchainExtent.height > surfCapabilities.maxImageExtent.height) { in demo_prepare_buffers()
[all …]
Dcube.cpp1276 vk::Extent2D swapchainExtent; in prepare_buffers() local
1281 swapchainExtent.width = width; in prepare_buffers()
1282 swapchainExtent.height = height; in prepare_buffers()
1285 swapchainExtent = surfCapabilities.currentExtent; in prepare_buffers()
1379 .setImageExtent({swapchainExtent.width, swapchainExtent.height}) in prepare_buffers()