2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2009-05-07 20:46:07 +02:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2009-05-07 20:46:07 +02:00
|
|
|
|
2015-03-01 23:53:15 +01:00
|
|
|
#include <memory>
|
2020-02-13 04:10:44 +01:00
|
|
|
#include <set>
|
2014-03-12 20:33:41 +01:00
|
|
|
#include <string>
|
2015-12-29 13:17:59 +01:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2023-06-02 21:07:42 +02:00
|
|
|
#include "VideoCommon/Assets/CustomTextureData.h"
|
2023-03-20 07:23:51 +01:00
|
|
|
#include "VideoCommon/Assets/TextureAsset.h"
|
2017-06-12 19:37:28 +02:00
|
|
|
#include "VideoCommon/TextureConfig.h"
|
2021-05-01 07:59:24 +02:00
|
|
|
#include "VideoCommon/TextureInfo.h"
|
2009-05-07 20:46:07 +02:00
|
|
|
|
2017-07-30 21:45:55 +02:00
|
|
|
enum class TextureFormat;
|
|
|
|
|
2020-05-03 19:49:46 +02:00
|
|
|
std::set<std::string> GetTextureDirectoriesWithGameId(const std::string& root_directory,
|
|
|
|
const std::string& game_id);
|
|
|
|
|
2014-12-22 12:53:03 +01:00
|
|
|
class HiresTexture
|
2009-05-07 20:46:07 +02:00
|
|
|
{
|
2014-12-22 12:53:03 +01:00
|
|
|
public:
|
2015-12-29 13:21:51 +01:00
|
|
|
static void Init();
|
2015-03-01 23:53:15 +01:00
|
|
|
static void Update();
|
2019-08-17 21:40:58 +02:00
|
|
|
static void Clear();
|
2015-03-01 23:53:15 +01:00
|
|
|
static void Shutdown();
|
2022-03-05 21:52:43 +01:00
|
|
|
static std::shared_ptr<HiresTexture> Search(const TextureInfo& texture_info);
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2023-03-20 07:23:51 +01:00
|
|
|
HiresTexture(bool has_arbitrary_mipmaps, std::shared_ptr<VideoCommon::GameTextureAsset> asset);
|
2018-01-10 14:56:18 +01:00
|
|
|
|
2023-03-20 07:23:51 +01:00
|
|
|
bool HasArbitraryMipmaps() const { return m_has_arbitrary_mipmaps; }
|
|
|
|
const std::shared_ptr<VideoCommon::GameTextureAsset>& GetAsset() const { return m_game_texture; }
|
2016-06-24 10:43:46 +02:00
|
|
|
|
2016-01-06 19:35:16 +01:00
|
|
|
private:
|
2021-09-04 06:43:19 +02:00
|
|
|
bool m_has_arbitrary_mipmaps = false;
|
2023-03-20 07:23:51 +01:00
|
|
|
std::shared_ptr<VideoCommon::GameTextureAsset> m_game_texture;
|
2014-12-22 12:53:03 +01:00
|
|
|
};
|