2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-05-07 18:46:07 +00:00
|
|
|
|
|
|
|
#ifndef _HIRESTEXTURES_H
|
|
|
|
#define _HIRESTEXTURES_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include "VideoCommon.h"
|
|
|
|
#include "TextureDecoder.h"
|
|
|
|
|
|
|
|
namespace HiresTextures
|
|
|
|
{
|
2009-05-16 01:21:57 +00:00
|
|
|
void Init(const char *gameCode);
|
2012-05-12 12:31:38 +00:00
|
|
|
bool HiresTexExists(const char *filename);
|
|
|
|
PC_TexFormat GetHiresTex(const char *fileName, unsigned int *pWidth, unsigned int *pHeight, unsigned int *required_size, int texformat, unsigned int data_size, u8 *data);
|
2009-12-22 06:47:42 +00:00
|
|
|
|
2009-05-07 18:46:07 +00:00
|
|
|
};
|
|
|
|
|
2009-07-26 09:52:35 +00:00
|
|
|
#endif // _HIRESTEXTURES_H
|