| 268 | }; |
| 269 | |
| 270 | bool operator==(AppSurface const &a, AppSurface const &b) { |
| 271 | return a.phys_device == b.phys_device && a.surf_present_modes == b.surf_present_modes && a.surf_formats == b.surf_formats && |
| 272 | a.surf_formats2 == b.surf_formats2 && a.surface_capabilities == b.surface_capabilities && |
| 273 | a.surface_capabilities2_khr == b.surface_capabilities2_khr && a.surface_capabilities2_ext == b.surface_capabilities2_ext; |
| 274 | } |
| 275 | |
| 276 | #if defined(VULKANINFO_WSI_ENABLED) |
| 277 | void DumpPresentableSurfaces(Printer &p, AppInstance &inst, const std::vector<std::unique_ptr<AppGpu>> &gpus, |
nothing calls this directly
no outgoing calls
no test coverage detected