kodi
xbmc
cores
RetroPlayer
rendering
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
{
17
class
CRenderSettings
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
KODI
Definition:
AudioDecoder.h:18
KODI::RETRO::CRenderVideoSettings
Video settings provided by the rendering system.
Definition:
RenderVideoSettings.h:22
KODI::RETRO::CRenderSettings
Definition:
RenderSettings.h:17
RETRO
Generated by
1.8.13