| 152 | } |
| 153 | |
| 154 | void DumpPresentModes(Printer &p, AppSurface &surface) { |
| 155 | ArrayWrapper arr(p, "Present Modes", surface.surf_present_modes.size()); |
| 156 | for (auto &mode : surface.surf_present_modes) { |
| 157 | p.SetAsType().PrintString(VkPresentModeKHRString(mode)); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | void DumpSurfaceCapabilities(Printer &p, AppInstance &inst, AppGpu &gpu, AppSurface &surface) { |
| 162 | auto &surf_cap = surface.surface_capabilities; |
no test coverage detected