diff options
author | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-06-08 19:46:05 +0200 |
---|---|---|
committer | Hugo Locurcio <hugo.locurcio@hugo.pro> | 2023-08-17 14:45:17 +0200 |
commit | 6f1152bdbe1338998b41c51c5a39dc6dac28ae31 (patch) | |
tree | 10ae7ca78b0da733070802d1108f28ca3c2c21d4 /misc/dist | |
parent | 281b7b9fdf033f391e6a2c2b1d777e61737ccb16 (diff) | |
download | redot-engine-6f1152bdbe1338998b41c51c5a39dc6dac28ae31.tar.gz |
Add a `--audio-output-latency` command-line argument
This allows optimizing the audio output latency on higher-end CPUs,
especially in projects that do not expose a way to override this setting.
Diffstat (limited to 'misc/dist')
-rw-r--r-- | misc/dist/linux/godot.6 | 3 | ||||
-rw-r--r-- | misc/dist/shell/_godot.zsh-completion | 1 | ||||
-rw-r--r-- | misc/dist/shell/godot.bash-completion | 1 | ||||
-rw-r--r-- | misc/dist/shell/godot.fish | 1 |
4 files changed, 6 insertions, 0 deletions
diff --git a/misc/dist/linux/godot.6 b/misc/dist/linux/godot.6 index a00a69299c..beb92c96b5 100644 --- a/misc/dist/linux/godot.6 +++ b/misc/dist/linux/godot.6 @@ -58,6 +58,9 @@ Password for remote filesystem. \fB\-\-audio\-driver\fR <driver> Audio driver ('PulseAudio', 'ALSA', 'Dummy'). .TP +\fB\-\-audio\-output\-latency\fR <ms> +Override audio output latency in milliseconds (default is 15 ms). Lower values make sound playback more reactive but increase CPU usage, and may result in audio cracking if the CPU can't keep up. +.TP \fB\-\-video\-driver\fR <driver> Video driver ('Vulkan', 'GLES2'). .SS "Display options:" diff --git a/misc/dist/shell/_godot.zsh-completion b/misc/dist/shell/_godot.zsh-completion index 3b12fdbc22..490af0a8a5 100644 --- a/misc/dist/shell/_godot.zsh-completion +++ b/misc/dist/shell/_godot.zsh-completion @@ -43,6 +43,7 @@ _arguments \ '--remote-fs[use a remote filesystem]:remote filesystem address' \ '--remote-fs-password[password for remote filesystem]:remote filesystem password' \ '--audio-driver[set the audio driver]:audio driver name' \ + '--audio-output-latency[override audio output latency in milliseconds (default is 15 ms)]:number of milliseconds' \ '--display-driver[set the display driver]:display driver name' \ "--rendering-method[set the renderer]:renderer name:((forward_plus\:'Desktop renderer' mobile\:'Desktop and mobile renderer' gl_compatibility\:'Desktop, mobile and web renderer'))" \ "--rendering-driver[set the rendering driver]:rendering driver name:((vulkan\:'Vulkan renderer' opengl3\:'OpenGL ES 3.0 renderer' dummy\:'Dummy renderer'))" \ diff --git a/misc/dist/shell/godot.bash-completion b/misc/dist/shell/godot.bash-completion index ba4edc4f25..c78f0a1f33 100644 --- a/misc/dist/shell/godot.bash-completion +++ b/misc/dist/shell/godot.bash-completion @@ -46,6 +46,7 @@ _complete_godot_options() { --remote-fs --remote-fs-password --audio-driver +--audio-output-latency --display-driver --rendering-method --rendering-driver diff --git a/misc/dist/shell/godot.fish b/misc/dist/shell/godot.fish index bb4ff0b558..fbfa7344f1 100644 --- a/misc/dist/shell/godot.fish +++ b/misc/dist/shell/godot.fish @@ -59,6 +59,7 @@ complete -c godot -l render-thread -d "Set the render thread mode" -x -a "unsafe complete -c godot -l remote-fs -d "Use a remote filesystem (<host/IP>[:<port>] address)" -x complete -c godot -l remote-fs-password -d "Password for remote filesystem" -x complete -c godot -l audio-driver -d "Set the audio driver" -x +complete -c godot -l audio-output-latency -d "Override audio output latency in milliseconds (default is 15 ms)" -x complete -c godot -l display-driver -d "Set the display driver" -x complete -c godot -l rendering-method -d "Set the renderer" -x -a "(godot_rendering_method_args)" complete -c godot -l rendering-driver -d "Set the rendering driver" -x -a "(godot_rendering_driver_args)" |