diff options
author | Lynne <dev@lynne.ee> | 2024-07-24 11:44:06 +0200 |
---|---|---|
committer | Lynne <dev@lynne.ee> | 2024-08-11 05:13:13 +0200 |
commit | 12f868cab558af8e32829eb5ed38189ce9b93f72 (patch) | |
tree | 197f2b666eee4decaa335ce4f042beb5e429b617 | |
parent | c19af16f8db4eac1d603d0b8e439c03946a262b7 (diff) | |
download | ffmpeg-12f868cab558af8e32829eb5ed38189ce9b93f72.tar.gz |
vulkan_shaderc: add debug information to shaders
-rw-r--r-- | libavfilter/vulkan_shaderc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libavfilter/vulkan_shaderc.c b/libavfilter/vulkan_shaderc.c index 455e81767e..9e8a3d17ac 100644 --- a/libavfilter/vulkan_shaderc.c +++ b/libavfilter/vulkan_shaderc.c @@ -51,6 +51,7 @@ static int shdc_shader_compile(FFVkSPIRVCompiler *ctx, void *avctx, shaderc_compile_options_set_target_env(opts, shaderc_target_env_vulkan, shaderc_env_version_vulkan_1_2); shaderc_compile_options_set_target_spirv(opts, shaderc_spirv_version_1_5); + shaderc_compile_options_set_generate_debug_info(opts); shaderc_compile_options_set_optimization_level(opts, shaderc_optimization_level_performance); |