Create a config dialog. Add dumping TEV texture fetches. Better TEV stage dumping. Byteswap indexed XF loading. Remove scaling texture coordinates in the HW rasterizer because that has already been done by the time they reach the rasterizer. Increase storage for clipper.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@6506 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
donkopunchstania 2010-12-02 05:38:48 +00:00
parent f91ac92895
commit 8f035ae40a
17 changed files with 419 additions and 51 deletions

View file

@ -23,29 +23,33 @@
#define STATISTICS 1
// NEVER inherit from this class.
struct Config : NonCopyable
struct VideoConfig : NonCopyable
{
Config();
void Load();
void Save();
VideoConfig();
void Load(const char* ini_file);
void Save(const char* ini_file);
// General
bool bFullscreen;
bool bHideCursor;
bool renderToMainframe;
bool bHwRasterizer;
bool bShowStats;
bool bDumpTextures;
bool bDumpObjects;
bool bDumpFrames;
bool bDumpTevStages;
bool bHwRasterizer;
// Debug only
bool bDumpTevStages;
bool bDumpTevTextureFetches;
u32 drawStart;
u32 drawEnd;
};
extern Config g_Config;
extern VideoConfig g_Config;
#endif // _PLUGIN_VIDEOSOFTWARE_CONFIG_H_