mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-04 09:22:38 +00:00
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:
parent
f91ac92895
commit
8f035ae40a
17 changed files with 419 additions and 51 deletions
|
@ -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_
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue