HomeSort by relevance Sort by last modified time
    Searched full:swapchainextent (Results 1 - 6 of 6) sorted by null

  /external/deqp/external/vulkancts/framework/vulkan/
vkWsiUtil.hpp 45 enum SwapchainExtent
55 SwapchainExtent swapchainExtent;
  /external/deqp/external/vulkancts/modules/vulkan/wsi/
vktWsiSwapchainTests.cpp 360 (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE
412 if (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE ||
413 platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_SCALED_TO_WINDOW_SIZE)
423 if (platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_SETS_WINDOW_SIZE)
429 if (platformProperties.swapchainExtent != PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WINDOW_SIZE)
719 (platformProperties.swapchainExtent == PlatformProperties::SWAPCHAIN_EXTENT_MUST_MATCH_WINDOW_SIZE
    [all...]
vktWsiSharedPresentableImageTests.cpp 223 return vk::wsi::getPlatformProperties(wsiType).swapchainExtent == vk::wsi::PlatformProperties::SWAPCHAIN_EXTENT_SCALED_TO_WINDOW_SIZE;
    [all...]
vktWsiIncrementalPresentTests.cpp     [all...]
  /external/vulkan-validation-layers/demos/
cube.c 890 VkExtent2D swapchainExtent;
896 swapchainExtent.width = demo->width;
897 swapchainExtent.height = demo->height;
899 if (swapchainExtent.width < surfCapabilities.minImageExtent.width) {
900 swapchainExtent.width = surfCapabilities.minImageExtent.width;
901 } else if (swapchainExtent.width > surfCapabilities.maxImageExtent.width) {
902 swapchainExtent.width = surfCapabilities.maxImageExtent.width;
905 if (swapchainExtent.height < surfCapabilities.minImageExtent.height) {
906 swapchainExtent.height = surfCapabilities.minImageExtent.height;
907 } else if (swapchainExtent.height > surfCapabilities.maxImageExtent.height)
    [all...]
cube.cpp     [all...]

Completed in 716 milliseconds