Complete chain of passing command line parameters to external renderer

This commit is contained in:
2019-11-15 21:11:41 +01:00
parent fa1a78e54c
commit efb1af7ee0
3 changed files with 8 additions and 4 deletions

View File

@@ -104,7 +104,9 @@ static int create_renderers(char **renderers,
fprintf(stderr, _("Please specify shared object for external renderer. Will ignore this renderer.\n"));
continue;
}
output_renderer = GDS_RENDER_OUTPUT_RENDERER(external_renderer_new_with_so(ext_params->so_path));
output_renderer = GDS_RENDER_OUTPUT_RENDERER(
external_renderer_new_with_so_and_param(ext_params->so_path,
ext_params->cli_params));
} else {
continue;
}