Better info output

This commit is contained in:
dec05eba
2024-07-17 18:04:22 +02:00
parent 26deafd7db
commit 57fdf3e7e6

View File

@@ -1603,13 +1603,13 @@ static void list_system_info(bool wayland) {
static void list_gpu_info(gsr_egl *egl) { static void list_gpu_info(gsr_egl *egl) {
switch(egl->gpu_info.vendor) { switch(egl->gpu_info.vendor) {
case GSR_GPU_VENDOR_AMD: case GSR_GPU_VENDOR_AMD:
puts("amd"); printf("gpu amd\n");
break; break;
case GSR_GPU_VENDOR_INTEL: case GSR_GPU_VENDOR_INTEL:
puts("intel"); printf("gpu intel\n");
break; break;
case GSR_GPU_VENDOR_NVIDIA: case GSR_GPU_VENDOR_NVIDIA:
puts("nvidia"); printf("gpu nvidia\n");
break; break;
} }
} }