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.
11 #include "imagefiles/SpecialImageFileLoader.h"
21 class CSpecialImageLoaderFactory
24 CSpecialImageLoaderFactory();
26 std::unique_ptr
<CTexture
> Load(const std::string
& specialType
,
27 const std::string
& filePath
,
28 unsigned int preferredWidth
,
29 unsigned int preferredHeight
) const;
32 std::array
<std::unique_ptr
<ISpecialImageFileLoader
>, 6> m_specialImageLoaders
{};
34 } // namespace IMAGE_FILES