Home
last modified time | relevance | path

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

/AliOS-Things-master/components/SDL2/src/video/
A DSDL_vulkan_utils.c255 uint32_t displayModePropertiesCount = 0; in SDL_Vulkan_Display_CreateSurface() local
310 … vkGetDisplayModePropertiesKHR(physicalDevice, display, &displayModePropertiesCount, NULL); in SDL_Vulkan_Display_CreateSurface()
311 if (result != VK_SUCCESS || displayModePropertiesCount == 0) in SDL_Vulkan_Display_CreateSurface()
316 …(SDL_LOG_CATEGORY_VIDEO, "vulkandisplay: Number of display modes: %u", displayModePropertiesCount); in SDL_Vulkan_Display_CreateSurface()
318 …isplayModeProperties = SDL_malloc(sizeof(VkDisplayModePropertiesKHR) * displayModePropertiesCount); in SDL_Vulkan_Display_CreateSurface()
326 …vkGetDisplayModePropertiesKHR(physicalDevice, display, &displayModePropertiesCount, displayModePro… in SDL_Vulkan_Display_CreateSurface()
327 if (result != VK_SUCCESS || displayModePropertiesCount == 0) { in SDL_Vulkan_Display_CreateSurface()
334 for (i = 0; i < displayModePropertiesCount; ++i) in SDL_Vulkan_Display_CreateSurface()

Completed in 4 milliseconds