2013-04-18 06:09:55 +03:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2009-05-07 21:46:07 +03:00
|
|
|
|
2014-02-10 20:54:46 +02:00
|
|
|
#pragma once
|
2009-05-07 21:46:07 +03:00
|
|
|
|
|
|
|
#include <map>
|
2014-02-17 12:18:15 +02:00
|
|
|
#include "VideoCommon/TextureDecoder.h"
|
|
|
|
#include "VideoCommon/VideoCommon.h"
|
2009-05-07 21:46:07 +03:00
|
|
|
|
|
|
|
namespace HiresTextures
|
|
|
|
{
|
2009-05-16 04:21:57 +03:00
|
|
|
void Init(const char *gameCode);
|
2012-05-12 15:31:38 +03: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 08:47:42 +02:00
|
|
|
|
2009-05-07 21:46:07 +03:00
|
|
|
};
|