cut dependencies, clean code

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1685 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
hrydgard
2008-12-26 12:24:15 +00:00
parent 974ff690f6
commit afc87eb5ae
7 changed files with 38 additions and 30 deletions

View File

@ -20,14 +20,10 @@
#include <map>
#include "VideoCommon.h"
#include "GLUtil.h"
#include "BPStructs.h"
struct TRectangle
{
int left, top, right, bottom;
};
class TextureMngr
{
public:
@ -73,7 +69,6 @@ private:
static int nTex2DEnabled, nTexRECTEnabled;
public:
static void Init();
static void Cleanup();
static void Shutdown();
@ -86,5 +81,6 @@ public:
static void DisableStage(int stage); // sets active texture
};
#endif
bool SaveTexture(const char* filename, u32 textarget, u32 tex, int width, int height);
#endif