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

check-vulkan: Temporarily print JSON details of GPUs to stderr


When the corresponding code in SrtGraphics is ready, we can parse
the JSON on stdout and produce machine-readable output from
steam-runtime-system-info. However, until we have that, human-readable
output is better than nothing.

Signed-off-by: default avatarSimon McVittie <smcv@collabora.com>
parent 2107a0df
No related branches found
No related tags found
1 merge request!229check-vulkan: Temporarily print JSON details of GPUs to stderr
Pipeline #8041 passed
......@@ -1370,10 +1370,10 @@ int main (int argc,
goto out;
for (i = 0; i < physical_device_count; i++)
print_physical_device_info (physical_devices[i], original_stdout);
print_physical_device_info (physical_devices[i], stderr);
result = draw_test_triangle (vk_instance, physical_devices[0], error);
print_draw_test_result (0, result, local_error, original_stdout);
print_draw_test_result (0, result, local_error, stderr);
if (result)
ret = EXIT_SUCCESS;
......
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