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
|
|
|
|
|
|
|
#ifndef _HIRESTEXTURES_H
|
|
|
|
#define _HIRESTEXTURES_H
|
|
|
|
|
|
|
|
#include <map>
|
|
|
|
#include "VideoCommon.h"
|
|
|
|
#include "TextureDecoder.h"
|
|
|
|
|
|
|
|
namespace HiresTextures
|
|
|
|
{
|
2009-05-15 19:21:57 -06:00
|
|
|
void Init(const char *gameCode);
|
2012-05-12 06:31:38 -06: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-21 23:47:42 -07:00
|
|
|
|
2009-05-07 12:46:07 -06:00
|
|
|
};
|
|
|
|
|
2009-07-26 03:52:35 -06:00
|
|
|
#endif // _HIRESTEXTURES_H
|