[WASAPI] set stream audio category
[xbmc.git] / xbmc / cores / RetroPlayer / rendering / RenderSettings.cpp
blob3db43d2a0ba35d675cde616dd57cf88fa266e715
1 /*
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.
7 */
9 #include "RenderSettings.h"
11 using namespace KODI;
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)
27 return true;
28 if (m_videoSettings > rhs.m_videoSettings)
29 return false;
31 return false;