mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-08 00:59:44 +00:00
VideoCommon: Support dumping frames to images
This is mainly for potential Android fifoci usage, and thus is not exposed anywhere in the UI. To enable, set DumpFramesAsImages under Settings in GFX.ini.
This commit is contained in:
parent
b6f9bdf16b
commit
6d0b9b816f
4 changed files with 111 additions and 17 deletions
|
@ -71,6 +71,7 @@ void VideoConfig::Load(const std::string& ini_file)
|
|||
settings->Get("ConvertHiresTextures", &bConvertHiresTextures, 0);
|
||||
settings->Get("CacheHiresTextures", &bCacheHiresTextures, 0);
|
||||
settings->Get("DumpEFBTarget", &bDumpEFBTarget, 0);
|
||||
settings->Get("DumpFramesAsImages", &bDumpFramesAsImages, 0);
|
||||
settings->Get("FreeLook", &bFreeLook, 0);
|
||||
settings->Get("UseFFV1", &bUseFFV1, 0);
|
||||
settings->Get("EnablePixelLighting", &bEnablePixelLighting, 0);
|
||||
|
@ -287,6 +288,7 @@ void VideoConfig::Save(const std::string& ini_file)
|
|||
settings->Set("ConvertHiresTextures", bConvertHiresTextures);
|
||||
settings->Set("CacheHiresTextures", bCacheHiresTextures);
|
||||
settings->Set("DumpEFBTarget", bDumpEFBTarget);
|
||||
settings->Set("DumpFramesAsImages", bDumpFramesAsImages);
|
||||
settings->Set("FreeLook", bFreeLook);
|
||||
settings->Set("UseFFV1", bUseFFV1);
|
||||
settings->Set("EnablePixelLighting", bEnablePixelLighting);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue