Skip to content
Snippets Groups Projects
Commit 2875cf08 authored by Jeremy Whiting's avatar Jeremy Whiting
Browse files

Add missing string for cannot draw and timeout graphics issues.

parent a32d9290
Branches
Tags
1 merge request!86Add missing string for cannot draw graphics issue.
Pipeline #1994 passed
...@@ -242,6 +242,12 @@ jsonify_graphics_issues (JsonBuilder *builder, ...@@ -242,6 +242,12 @@ jsonify_graphics_issues (JsonBuilder *builder,
if ((issues & SRT_GRAPHICS_ISSUES_SOFTWARE_RENDERING) != 0) if ((issues & SRT_GRAPHICS_ISSUES_SOFTWARE_RENDERING) != 0)
json_builder_add_string_value (builder, "software-rendering"); 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 static void
......
...@@ -406,6 +406,14 @@ keys: ...@@ -406,6 +406,14 @@ keys:
: This graphics stack appears to be using unaccelerated : This graphics stack appears to be using unaccelerated
software rendering. 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** **locale-issues**
: An array of strings indicating locale-related issues. : An array of strings indicating locale-related issues.
The array is empty if no problems were detected. 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.
Please register or to comment