Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • steamrt/steam-runtime-tools
1 result
Show changes
Commits on Source (2)
......@@ -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.
......