| 761 | } |
| 762 | |
| 763 | AppDisplayPlane::AppDisplayPlane(AppGpu &gpu, uint32_t index, const VkDisplayPlanePropertiesKHR &in_prop) |
| 764 | : global_index(index), properties(in_prop) { |
| 765 | std::ostringstream display_name; |
| 766 | |
| 767 | supported_displays = GetVector<VkDisplayKHR>("vkGetDisplayPlaneSupportedDisplaysKHR", vkGetDisplayPlaneSupportedDisplaysKHR, |
| 768 | gpu.phys_device, global_index); |
| 769 | } |
| 770 | |
| 771 | std::vector<AppDisplayPlane> enumerate_display_planes(AppGpu &gpu) { |
| 772 | std::vector<AppDisplayPlane> result; |
nothing calls this directly
no outgoing calls
no test coverage detected