diff --git a/gpu-screen-recorder.1 b/gpu-screen-recorder.1 index 792a0d3..075daf6 100644 --- a/gpu-screen-recorder.1 +++ b/gpu-screen-recorder.1 @@ -279,6 +279,10 @@ Video codec: HDR options not available on X11 or portal capture. 10-bit capture reduces banding but may not be supported properly by all video players. .br Vulkan codec options are experimental. They may not work properly on your system because of GPU driver issues. +.br +Using vulkan codecs may result in better gaming performance, especially on NVIDIA as it doesn't suffer from an issue known as "cuda p2 state" +.br +where the GPU gets downclocked when using nvenc (regular video codecs on NVIDIA). (default: auto → h264). .TP diff --git a/meson.build b/meson.build index 921efa5..1c7cf6d 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('gpu-screen-recorder', ['c', 'cpp'], version : '5.12.5', default_options : ['warning_level=2']) +project('gpu-screen-recorder', ['c', 'cpp'], version : '5.13.0', default_options : ['warning_level=2']) add_project_arguments('-Wshadow', language : ['c', 'cpp']) if get_option('buildtype') == 'debug' diff --git a/project.conf b/project.conf index 4eecc7e..6498c57 100644 --- a/project.conf +++ b/project.conf @@ -1,7 +1,7 @@ [package] name = "gpu-screen-recorder" type = "executable" -version = "5.12.5" +version = "5.13.0" platforms = ["posix"] [config]