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.
9 #include "RenderSettings.h"
12 using namespace RETRO
;
14 void CRenderSettings::Reset()
16 m_videoSettings
.Reset();
19 bool CRenderSettings::operator==(const CRenderSettings
& rhs
) const
21 return m_videoSettings
== rhs
.m_videoSettings
;
24 bool CRenderSettings::operator<(const CRenderSettings
& rhs
) const
26 if (m_videoSettings
< rhs
.m_videoSettings
)
28 if (m_videoSettings
> rhs
.m_videoSettings
)