[videodb] remove unused seasons table from episode_view
[xbmc.git] / xbmc / platform / win10 / GPUInfoWin10.cpp
blob8c6fb1a661aedd1aceb5172e261a8ab8115cff85
1 /*
2 * Copyright (C) 2023 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 "GPUInfoWin10.h"
11 std::unique_ptr<CGPUInfo> CGPUInfo::GetGPUInfo()
13 return std::make_unique<CGPUInfoWin10>();
16 bool CGPUInfoWin10::SupportsCustomTemperatureCommand() const
18 return false;
21 bool CGPUInfoWin10::SupportsPlatformTemperature() const
23 return false;
26 bool CGPUInfoWin10::GetGPUPlatformTemperature(CTemperature& temperature) const
28 return false;
31 bool CGPUInfoWin10::GetGPUTemperatureFromCommand(CTemperature& temperature,
32 const std::string& cmd) const
34 return false;