Home
last modified time | relevance | path

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

/external/mesa3d/src/vulkan/wsi/
Dwsi_common_wayland.c410 static const VkPresentModeKHR present_modes[] = { variable
525 *pPresentModeCount = ARRAY_SIZE(present_modes); in wsi_wl_surface_get_present_modes()
529 *pPresentModeCount = MIN2(*pPresentModeCount, ARRAY_SIZE(present_modes)); in wsi_wl_surface_get_present_modes()
530 typed_memcpy(pPresentModes, present_modes, *pPresentModeCount); in wsi_wl_surface_get_present_modes()
532 if (*pPresentModeCount < ARRAY_SIZE(present_modes)) in wsi_wl_surface_get_present_modes()
Dwsi_common_x11.c244 static const VkPresentModeKHR present_modes[] = { variable
563 *pPresentModeCount = ARRAY_SIZE(present_modes); in x11_surface_get_present_modes()
567 *pPresentModeCount = MIN2(*pPresentModeCount, ARRAY_SIZE(present_modes)); in x11_surface_get_present_modes()
568 typed_memcpy(pPresentModes, present_modes, *pPresentModeCount); in x11_surface_get_present_modes()
570 return *pPresentModeCount < ARRAY_SIZE(present_modes) ? in x11_surface_get_present_modes()
/external/vulkan-validation-layers/layers/
Dcore_validation.cpp11739 … foundMatch = std::find(physical_device_state->present_modes.begin(), physical_device_state->prese… in ValidateCreateSwapchain()
11740 … pCreateInfo->presentMode) != physical_device_state->present_modes.end(); in ValidateCreateSwapchain()
12618 if (*pPresentModeCount > physical_device_state->present_modes.size()) in PostCallRecordGetPhysicalDeviceSurfacePresentModesKHR()
12619 physical_device_state->present_modes.resize(*pPresentModeCount); in PostCallRecordGetPhysicalDeviceSurfacePresentModesKHR()
12624 physical_device_state->present_modes[i] = pPresentModes[i]; in PostCallRecordGetPhysicalDeviceSurfacePresentModesKHR()
Dcore_validation.h109 std::vector<VkPresentModeKHR> present_modes; member