Home
last modified time | relevance | path

Searched refs:present_modes (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/vulkan/wsi/
Dwsi_common_wayland.c361 static const VkPresentModeKHR present_modes[] = { variable
443 *pPresentModeCount = ARRAY_SIZE(present_modes); in wsi_wl_surface_get_present_modes()
447 *pPresentModeCount = MIN2(*pPresentModeCount, ARRAY_SIZE(present_modes)); in wsi_wl_surface_get_present_modes()
448 typed_memcpy(pPresentModes, present_modes, *pPresentModeCount); in wsi_wl_surface_get_present_modes()
450 if (*pPresentModeCount < ARRAY_SIZE(present_modes)) in wsi_wl_surface_get_present_modes()
Dwsi_common_x11.c182 static const VkPresentModeKHR present_modes[] = { variable
464 *pPresentModeCount = ARRAY_SIZE(present_modes); in x11_surface_get_present_modes()
468 *pPresentModeCount = MIN2(*pPresentModeCount, ARRAY_SIZE(present_modes)); in x11_surface_get_present_modes()
469 typed_memcpy(pPresentModes, present_modes, *pPresentModeCount); in x11_surface_get_present_modes()
471 return *pPresentModeCount < ARRAY_SIZE(present_modes) ? in x11_surface_get_present_modes()
/external/vulkan-validation-layers/tests/
Dlayer_validation_tests.cpp1656 VkSurfaceFormatKHR *present_modes = NULL; in TEST_F() local
1658 err = vkGetPhysicalDeviceSurfaceFormatsKHR(gpu(), surface, &present_mode_count, present_modes); in TEST_F()