kodi
RenderSettings.h
1 /*
2  * Copyright (C) 2017-2018 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 "RenderVideoSettings.h"
12 
13 namespace KODI
14 {
15 namespace RETRO
16 {
18 {
19 public:
20  CRenderSettings() { Reset(); }
21 
22  void Reset();
23 
24  bool operator==(const CRenderSettings& rhs) const;
25  bool operator<(const CRenderSettings& rhs) const;
26 
27  CRenderVideoSettings& VideoSettings() { return m_videoSettings; }
28  const CRenderVideoSettings& VideoSettings() const { return m_videoSettings; }
29 
30 private:
31  CRenderVideoSettings m_videoSettings;
32 };
33 } // namespace RETRO
34 } // namespace KODI
Definition: AudioDecoder.h:18
Video settings provided by the rendering system.
Definition: RenderVideoSettings.h:22
Definition: RenderSettings.h:17