aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2025-03-29 15:38:05 +0100
committerdec05eba <dec05eba@protonmail.com>2025-03-29 15:38:05 +0100
commitb8a521a785e1c40ef247e6536f284afd9e39922a (patch)
tree5776bf16deb9f4e18cf744d474e0d1f0dc19c081 /src/main.cpp
parentf85a7ab2055ddc8e2231a380f0c46e29e42c2072 (diff)
Reapply "WIP: use compute shader instead of graphics shader for better performance (especially on amd)"
This reverts commit f85a7ab2055ddc8e2231a380f0c46e29e42c2072.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 6adeb05..f0a3e06 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -1072,8 +1072,9 @@ static void open_video_hardware(AVCodecContext *codec_context, VideoQuality vide
// TODO: More quality options
if(low_power)
av_dict_set_int(&options, "low_power", 1, 0);
- // Improves performance but increases vram
- //av_dict_set_int(&options, "async_depth", 8, 0);
+ // Improves performance but increases vram.
+ // TODO: Might need a different async_depth for optimal performance on different amd/intel gpus
+ //av_dict_set_int(&options, "async_depth", 3, 0);
if(codec_context->codec_id == AV_CODEC_ID_H264) {
// Removed because it causes stutter in games for some people