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

Merge branch 'wip/jpwhiting/cantdraw' into 'master'

Add missing string for cannot draw graphics issue.

See merge request steam/steam-runtime-tools!86
parents a32d9290 2875cf08
No related branches found
No related tags found
1 merge request!86Add missing string for cannot draw graphics issue.
Pipeline #1996 passed
......@@ -242,6 +242,12 @@ jsonify_graphics_issues (JsonBuilder *builder,
if ((issues & SRT_GRAPHICS_ISSUES_SOFTWARE_RENDERING) != 0)
json_builder_add_string_value (builder, "software-rendering");
if ((issues & SRT_GRAPHICS_ISSUES_TIMEOUT) != 0)
json_builder_add_string_value (builder, "timeout");
if ((issues & SRT_GRAPHICS_ISSUES_CANNOT_DRAW) != 0)
json_builder_add_string_value (builder, "cannot-draw");
}
static void
......
......@@ -406,6 +406,14 @@ keys:
: This graphics stack appears to be using unaccelerated
software rendering.
**timeout**
: The test to check the given graphics mode timed out.
**cannot-draw**
: The test to see if drawing works for the given graphics mode
had an error and was unable to draw.
**locale-issues**
: An array of strings indicating locale-related issues.
The array is empty if no problems were detected.
......
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