Skip to content
Snippets Groups Projects
Commit 62de0be4 authored by Simon McVittie's avatar Simon McVittie
Browse files

graphics: Set CANNOT_DRAW if we cannot run check-vulkan


Previously we used CANNOT_LOAD here, but that seems wrong. If we can
run check-vulkan, but it immediately crashes, we would use CANNOT_DRAW;
let's use the same result if we cannot run it.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent d4f9486b
No related branches found
No related tags found
1 merge request!77Look for vulkaninfo, wflinfo in SRT_HELPERS_PATH
......@@ -715,7 +715,7 @@ _srt_check_graphics (const char *helpers_path,
&error))
{
g_debug ("An error occurred calling the helper: %s", error->message);
issues |= SRT_GRAPHICS_ISSUES_CANNOT_LOAD;
issues |= SRT_GRAPHICS_ISSUES_CANNOT_DRAW;
goto out;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment