vendor instead of gpu

This commit is contained in:
dec05eba
2024-07-17 18:17:23 +02:00
parent 57fdf3e7e6
commit 705abeff30

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:
printf("gpu amd\n"); printf("vendor amd\n");
break; break;
case GSR_GPU_VENDOR_INTEL: case GSR_GPU_VENDOR_INTEL:
printf("gpu intel\n"); printf("vendor intel\n");
break; break;
case GSR_GPU_VENDOR_NVIDIA: case GSR_GPU_VENDOR_NVIDIA:
printf("gpu nvidia\n"); printf("vendor nvidia\n");
break; break;
} }
} }