[Windows] Fix driver version detection of AMD RDNA+ GPU on Windows 10
[xbmc.git] / xbmc / pictures / PictureFolderImageFileLoader.h
blobaa5fb52678dcdd6a0b9f0b0117bd2257078aeac3
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 #pragma once
11 #include "imagefiles/SpecialImageFileLoader.h"
13 /*!
14 * @brief Generates a thumbnail for a folder in the picture browser, tile 4 images inside the folder.
16 class CPictureFolderImageFileLoader : public IMAGE_FILES::ISpecialImageFileLoader
18 public:
19 CPictureFolderImageFileLoader() = default;
20 ~CPictureFolderImageFileLoader() override = default;
22 bool CanLoad(const std::string& specialType) const override;
23 std::unique_ptr<CTexture> Load(const std::string& specialType,
24 const std::string& filePath,
25 unsigned int preferredWidth,
26 unsigned int preferredHeight) const override;