Local structure for holding display candidate information
| 266 | |
| 267 | // Local structure for holding display candidate information |
| 268 | struct Candidate |
| 269 | { |
| 270 | VkDisplayKHR display; |
| 271 | VkDisplayPropertiesKHR display_props; |
| 272 | VkDisplayModePropertiesKHR mode; |
| 273 | VkDisplayPlaneCapabilitiesKHR caps; |
| 274 | uint32_t plane_index; |
| 275 | uint32_t stack_index; |
| 276 | }; |
| 277 | |
| 278 | // Find all valid display candidates in the system |
| 279 | static std::vector<Candidate> find_display_candidates(VkPhysicalDevice phys_dev, Window::Mode window_mode) |
nothing calls this directly
no outgoing calls
no test coverage detected