mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-26 23:10:38 +00:00
Rename to Skip Half
This commit is contained in:
parent
cf753ffdfd
commit
783781f7b8
@ -245,7 +245,7 @@ public:
|
||||
float fCwCheatScrollPosition;
|
||||
float fGameListScrollPosition;
|
||||
int iBloomHack; //0 = off, 1 = safe, 2 = balanced, 3 = aggressive
|
||||
int iSkipGPUReadbackMode; // 0 = off, 1 = skip, 2 = to texture, 3 = half skip
|
||||
int iSkipGPUReadbackMode; // 0 = off, 1 = skip, 2 = to texture, 3 = skip half
|
||||
int iSplineBezierQuality; // 0 = low , 1 = Intermediate , 2 = High
|
||||
bool bHardwareTessellation;
|
||||
bool bShaderCache; // Hidden ini-only setting, useful for debugging shader compile times.
|
||||
|
@ -441,7 +441,7 @@ void GameSettingsScreen::CreateGraphicsSettings(UI::ViewGroup *graphicsSettings)
|
||||
CheckBox *disableCulling = graphicsSettings->Add(new CheckBox(&g_Config.bDisableRangeCulling, gr->T("Disable culling")));
|
||||
disableCulling->SetDisabledPtr(&g_Config.bSoftwareRendering);
|
||||
|
||||
static const char *skipGpuReadbackModes[] = { "No (default)", "Skip", "Copy to texture" , "Half skip"};
|
||||
static const char *skipGpuReadbackModes[] = { "No (default)", "Skip", "Copy to texture" , "Skip half"};
|
||||
|
||||
PopupMultiChoice *skipGPUReadbacks = graphicsSettings->Add(new PopupMultiChoice(&g_Config.iSkipGPUReadbackMode, gr->T("Skip GPU Readbacks"), skipGpuReadbackModes, 0, ARRAY_SIZE(skipGpuReadbackModes), I18NCat::GRAPHICS, screenManager()));
|
||||
skipGPUReadbacks->SetDisabledPtr(&g_Config.bSoftwareRendering);
|
||||
|
Loading…
Reference in New Issue
Block a user