summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar lat9nq2023-04-30 15:46:44 -0400
committerGravatar lat9nq2023-05-02 21:51:29 -0400
commit66ed1c187202e9d914f8a8d5bb64d672b05f45bb (patch)
tree9d48c4ff90e24972db4ddcccee42afcc4eea2992 /src
parentconfiguration: Expose separate swap present modes (diff)
downloadyuzu-66ed1c187202e9d914f8a8d5bb64d672b05f45bb.tar.gz
yuzu-66ed1c187202e9d914f8a8d5bb64d672b05f45bb.tar.xz
yuzu-66ed1c187202e9d914f8a8d5bb64d672b05f45bb.zip
default_ini: Update V-Sync description
default_ini: Update vsync text default_ini: Add tooltip from configure_graphics
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_cmd/default_ini.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/yuzu_cmd/default_ini.h b/src/yuzu_cmd/default_ini.h
index c0c89fbb9..1990c0707 100644
--- a/src/yuzu_cmd/default_ini.h
+++ b/src/yuzu_cmd/default_ini.h
@@ -325,8 +325,14 @@ aspect_ratio =
325# 0: Default, 1: 2x, 2: 4x, 3: 8x, 4: 16x 325# 0: Default, 1: 2x, 2: 4x, 3: 8x, 4: 16x
326max_anisotropy = 326max_anisotropy =
327 327
328# Whether to enable V-Sync (caps the framerate at 60FPS) or not. 328# Whether to enable VSync or not.
329# 0 (default): Off, 1: On 329# OpenGL: Values other than 0 enable VSync
330# Vulkan: FIFO is selected if the requested mode is not supported by the driver.
331# FIFO (VSync) does not drop frames or exhibit tearing but is limited by the screen refresh rate.
332# FIFO Relaxed is similar to FIFO but allows tearing as it recovers from a slow down.
333# Mailbox can have lower latency than FIFO and does not tear but may drop frames.
334# Immediate (no synchronization) just presents whatever is available and can exhibit tearing.
335# 0: Immediate (Off), 1: Mailbox, 2 (Default): FIFO (On), 3: FIFO Relaxed
330use_vsync = 336use_vsync =
331 337
332# Selects the OpenGL shader backend. NV_gpu_program5 is required for GLASM. If NV_gpu_program5 is 338# Selects the OpenGL shader backend. NV_gpu_program5 is required for GLASM. If NV_gpu_program5 is