mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 21:30:19 -06:00
Improve FPS/VPS Counting and Revamp Appearance
This commit is contained in:

committed by
Admiral H. Curtiss

parent
5e442f6ffa
commit
edb2c90b38
@ -173,6 +173,9 @@ public enum BooleanSetting implements AbstractBooleanSetting
|
||||
GFX_WIDESCREEN_HACK(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "wideScreenHack", false),
|
||||
GFX_CROP(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "Crop", false),
|
||||
GFX_SHOW_FPS(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "ShowFPS", false),
|
||||
GFX_SHOW_VPS(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "ShowVPS", false),
|
||||
GFX_SHOW_SPEED(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "ShowSpeed", false),
|
||||
GFX_SHOW_SPEED_COLORS(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "ShowSpeedColors", true),
|
||||
GFX_OVERLAY_STATS(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "OverlayStats", false),
|
||||
GFX_DUMP_TEXTURES(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "DumpTextures", false),
|
||||
GFX_DUMP_MIP_TEXTURES(Settings.FILE_GFX, Settings.SECTION_GFX_SETTINGS, "DumpMipTextures", false),
|
||||
|
@ -690,6 +690,13 @@ public final class SettingsFragmentPresenter
|
||||
R.string.video_backend, 0, R.array.videoBackendEntries, R.array.videoBackendValues));
|
||||
sl.add(new CheckBoxSetting(mContext, BooleanSetting.GFX_SHOW_FPS, R.string.show_fps,
|
||||
R.string.show_fps_description));
|
||||
sl.add(new CheckBoxSetting(mContext, BooleanSetting.GFX_SHOW_VPS, R.string.show_vps,
|
||||
R.string.show_vps_description));
|
||||
sl.add(new CheckBoxSetting(mContext, BooleanSetting.GFX_SHOW_SPEED, R.string.show_speed,
|
||||
R.string.show_speed_description));
|
||||
sl.add(new CheckBoxSetting(mContext, BooleanSetting.GFX_SHOW_SPEED_COLORS,
|
||||
R.string.show_speed_colors,
|
||||
R.string.show_speed_colors_description));
|
||||
sl.add(new SingleChoiceSettingDynamicDescriptions(mContext,
|
||||
IntSetting.GFX_SHADER_COMPILATION_MODE, R.string.shader_compilation_mode, 0,
|
||||
R.array.shaderCompilationModeEntries, R.array.shaderCompilationModeValues,
|
||||
|
@ -246,8 +246,13 @@
|
||||
<string name="video_backend">Video Backend</string>
|
||||
<string name="video_backend_description">Select the API used for graphics rendering.</string>
|
||||
<string name="show_fps">Show FPS</string>
|
||||
<string name="show_fps_description">Show the number of frames rendered per second as a measure of emulation speed.</string>
|
||||
|
||||
<string name="show_fps_description">Shows the number of distinct frames rendered per second as a measure of visual smoothness.</string>
|
||||
<string name="show_vps">Show VPS</string>
|
||||
<string name="show_vps_description">Show the number of frames rendered per second as a measure of emulation speed.</string>
|
||||
<string name="show_speed">Show % Speed</string>
|
||||
<string name="show_speed_description">Shows the % speed of emulation compared to full speed.</string>
|
||||
<string name="show_speed_colors">Show Speed Color</string>
|
||||
<string name="show_speed_colors_description">Changes the color of the FPS counter depending on emulation speed.</string>
|
||||
<string name="enhancements_submenu">Enhancements</string>
|
||||
<string name="internal_resolution">Internal Resolution</string>
|
||||
<string name="internal_resolution_description">Specifies the resolution used to render at. A high resolution will improve visual quality a lot but is also quite heavy on performance and might cause glitches in certain games.</string>
|
||||
|
Reference in New Issue
Block a user