2013-04-17 21:09:55 -06:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-05-07 12:46:07 -06:00
|
|
|
|
2014-02-10 11:54:46 -07:00
|
|
|
#pragma once
|
2009-05-07 12:46:07 -06:00
|
|
|
|
|
|
|
#include <map>
|
2014-03-12 13:33:41 -06:00
|
|
|
#include <string>
|
2014-02-17 03:18:15 -07:00
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-05-07 12:46:07 -06:00
|
|
|
|
|
|
|
namespace HiresTextures
|
|
|
|
{
|
2014-03-12 13:33:41 -06:00
|
|
|
void Init(const std::string& gameCode);
|
|
|
|
bool HiresTexExists(const std::string& filename);
|
|
|
|
PC_TexFormat GetHiresTex(const std::string& fileName, unsigned int* pWidth, unsigned int* pHeight, unsigned int* required_size, int texformat, unsigned int data_size, u8* data);
|
2009-12-21 23:47:42 -07:00
|
|
|
|
2014-09-11 11:00:40 -06:00
|
|
|
}
|