1 /*
2  *  Copyright (C) 2005-2021 Team Kodi
3  *  This file is part of Kodi - https://kodi.tv
4  *
5  *  SPDX-License-Identifier: GPL-2.0-or-later
6  *  See LICENSES/README.md for more information.
7  */
8 
9 #pragma once
10 
11 #include <string>
12 
13 struct DEBUG_INFO_PLAYER
14 {
15   std::string audio;
16   std::string video;
17   std::string player;
18   std::string vsync;
19 };
20 
21 struct DEBUG_INFO_VIDEO
22 {
23   std::string videoSource;
24   std::string metaPrim;
25   std::string metaLight;
26   std::string shader;
27 };
28 
29 struct DEBUG_INFO_RENDER
30 {
31   std::string renderFlags;
32   std::string videoOutput;
33 };
34