Android: Add backend multithreading option to gfx menu
This commit is contained in:
parent
8a1eb34c38
commit
369a5d9963
|
@ -452,6 +452,7 @@ public final class SettingsFragmentPresenter
|
|||
enhancementSection.getSetting(SettingsFile.KEY_ARBITRARY_MIPMAP_DETECTION);
|
||||
Setting wideScreenHack = gfxSection.getSetting(SettingsFile.KEY_WIDE_SCREEN_HACK);
|
||||
Setting force24BitColor = enhancementSection.getSetting(SettingsFile.KEY_FORCE_24_BIT_COLOR);
|
||||
Setting backendMultithreading = gfxSection.getSetting(SettingsFile.KEY_BACKEND_MULTITHREADING);
|
||||
|
||||
sl.add(new SingleChoiceSetting(SettingsFile.KEY_INTERNAL_RES, Settings.SECTION_GFX_SETTINGS,
|
||||
R.string.internal_resolution, R.string.internal_resolution_description,
|
||||
|
@ -501,6 +502,10 @@ public final class SettingsFragmentPresenter
|
|||
sl.add(new CheckBoxSetting(SettingsFile.KEY_WIDE_SCREEN_HACK, Settings.SECTION_GFX_SETTINGS,
|
||||
R.string.wide_screen_hack, R.string.wide_screen_hack_description, false,
|
||||
wideScreenHack));
|
||||
sl.add(new CheckBoxSetting(SettingsFile.KEY_BACKEND_MULTITHREADING,
|
||||
Settings.SECTION_GFX_SETTINGS,
|
||||
R.string.backend_multithreading, R.string.backend_multithreading_description, false,
|
||||
backendMultithreading));
|
||||
|
||||
/*
|
||||
Check if we support stereo
|
||||
|
|
|
@ -72,6 +72,7 @@ public final class SettingsFile
|
|||
public static final String KEY_ARBITRARY_MIPMAP_DETECTION = "ArbitraryMipmapDetection";
|
||||
public static final String KEY_WIDE_SCREEN_HACK = "wideScreenHack";
|
||||
public static final String KEY_FORCE_24_BIT_COLOR = "ForceTrueColor";
|
||||
public static final String KEY_BACKEND_MULTITHREADING = "BackendMultithreading";
|
||||
|
||||
public static final String KEY_STEREO_MODE = "StereoMode";
|
||||
public static final String KEY_STEREO_DEPTH = "StereoDepth";
|
||||
|
|
|
@ -199,6 +199,8 @@
|
|||
<string name="stereoscopy_convergence_description">Control the distance of the convergence plane, this is the distance at which objects will appear to be in front of the screen.\nA higher value creates stronger out-of-screen effects while a lower value is more comfortable.</string>
|
||||
<string name="stereoscopy_swap_eyes">Swap Eyes</string>
|
||||
<string name="stereoscopy_swap_eyes_description">Swap the left and right eye, mostly useful if you want to view side-by-side cross-eyed.</string>
|
||||
<string name="backend_multithreading">Backend Multithreading</string> <!--Backend Multithreading is only disabled by default on Android -->
|
||||
<string name="backend_multithreading_description">Enables CPU multithreading(Vulkan only). May affect performance. If unsure, leave unchecked</string>
|
||||
|
||||
<string name="hacks_submenu">Hacks</string>
|
||||
<string name="embedded_frame_buffer">Embedded Frame Buffer</string>
|
||||
|
|
Loading…
Reference in New Issue