Merge pull request #26142 from fritsch/ac3ftv
[xbmc.git] / xbmc / platform / freebsd / GPUInfoFreebsd.cpp
blob030b652d23fc00f9a9dcffd754a31ce0466f6d63
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 "GPUInfoFreebsd.h"
11 std::unique_ptr<CGPUInfo> CGPUInfo::GetGPUInfo()
13 return std::make_unique<CGPUInfoFreebsd>();
16 bool CGPUInfoFreebsd::SupportsPlatformTemperature() const
18 return false;
21 bool CGPUInfoFreebsd::GetGPUPlatformTemperature(CTemperature& temperature) const
23 return false;