dolphin/Source/Core/VideoCommon/HiresTextures.h

47 lines
870 B
C
Raw Normal View History

// Copyright 2013 Dolphin Emulator Project
// Licensed under GPLv2
// Refer to the license.txt file included.
#pragma once
#include <string>
2014-12-22 11:53:03 +00:00
#include <unordered_map>
#include "VideoCommon/TextureDecoder.h"
#include "VideoCommon/VideoCommon.h"
2014-12-22 11:53:03 +00:00
class HiresTexture
{
2014-12-22 11:53:03 +00:00
public:
static void Init(const std::string& gameCode);
2014-12-22 11:53:03 +00:00
static HiresTexture* Search(
const u8* texture, size_t texture_size,
const u8* tlut, size_t tlut_size,
u32 width, u32 height,
int format
);
static std::string GenBaseName(
const u8* texture, size_t texture_size,
const u8* tlut, size_t tlut_size,
u32 width, u32 height,
int format, bool dump = false
);
2014-12-22 11:53:03 +00:00
~HiresTexture();
struct Level
{
u8* data;
size_t data_size;
u32 width, height;
};
std::vector<Level> m_levels;
static std::unordered_map<std::string, std::string> textureMap;
private:
HiresTexture() {}
};