2 * Copyright (C) 2017-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
17 enum class SCALINGMETHOD
27 * \brief Methods for stretching the game to the viewing area
29 enum class STRETCHMODE
32 * \brief Show the game at its normal aspect ratio
37 * \brief Stretch the game to maintain a 4:3 aspect ratio
42 * \brief Stretch the game to fill the viewing area
47 * \brief Show the game at its original size (humorous for old consoles
53 * \brief Show the game at its normal aspect ratio but zoom to fill the
59 constexpr const char* STRETCHMODE_NORMAL_ID
= "normal";
60 constexpr const char* STRETCHMODE_STRETCH_4_3_ID
= "4:3";
61 constexpr const char* STRETCHMODE_FULLSCREEN_ID
= "fullscreen";
62 constexpr const char* STRETCHMODE_ORIGINAL_ID
= "original";
63 constexpr const char* STRETCHMODE_ZOOM_ID
= "zoom";
65 enum class RENDERFEATURE