Home
last modified time | relevance | path

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

/external/mesa3d/src/vulkan/wsi/
Dwsi_common.c229 uint32_t present_mode_count; in wsi_swapchain_is_present_mode_supported() local
233 result = iface->get_present_modes(surface, &present_mode_count, NULL); in wsi_swapchain_is_present_mode_supported()
237 present_modes = malloc(present_mode_count * sizeof(*present_modes)); in wsi_swapchain_is_present_mode_supported()
241 result = iface->get_present_modes(surface, &present_mode_count, in wsi_swapchain_is_present_mode_supported()
246 for (uint32_t i = 0; i < present_mode_count; i++) { in wsi_swapchain_is_present_mode_supported()
Dwsi_common_display.c963 uint32_t *present_mode_count, in wsi_display_surface_get_present_modes() argument
966 VK_OUTARRAY_MAKE(conn, present_modes, present_mode_count); in wsi_display_surface_get_present_modes()
/external/vulkan-validation-layers/tests/
Dvkrenderframework.cpp571 uint32_t present_mode_count; in InitSwapchain() local
572 …sicalDeviceSurfacePresentModesKHR(m_device->phy().handle(), surface, &present_mode_count, nullptr); in InitSwapchain()
574 if (present_mode_count != 0) { in InitSwapchain()
575 present_modes.resize(present_mode_count); in InitSwapchain()
576 …alDeviceSurfacePresentModesKHR(m_device->phy().handle(), surface, &present_mode_count, present_mod… in InitSwapchain()