diff options
author | dec05eba <dec05eba@protonmail.com> | 2025-03-29 15:37:53 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2025-03-29 15:37:53 +0100 |
commit | f85a7ab2055ddc8e2231a380f0c46e29e42c2072 (patch) | |
tree | 33cf9c1d086f3bd8332e36e97c73f793f18db11e /src/main.cpp | |
parent | a41a32cb9079dc3c78414b7b0cdc68243333020d (diff) |
Revert "WIP: use compute shader instead of graphics shader for better performance (especially on amd)"
This reverts commit a41a32cb9079dc3c78414b7b0cdc68243333020d.
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/main.cpp b/src/main.cpp index f0a3e06..6adeb05 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -1072,9 +1072,8 @@ 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. - // TODO: Might need a different async_depth for optimal performance on different amd/intel gpus - //av_dict_set_int(&options, "async_depth", 3, 0); + // Improves performance but increases vram + //av_dict_set_int(&options, "async_depth", 8, 0); if(codec_context->codec_id == AV_CODEC_ID_H264) { // Removed because it causes stutter in games for some people |