intel_extreme: Shorten graphics family names
This commit is contained in:
@@ -564,18 +564,18 @@ intel_get_accelerant_device_info(accelerant_device_info* info)
|
|||||||
|
|
||||||
DeviceType* type = &gInfo->shared_info->device_type;
|
DeviceType* type = &gInfo->shared_info->device_type;
|
||||||
|
|
||||||
if (type->InFamily(INTEL_FAMILY_7xx))
|
if (type->InFamily(INTEL_FAMILY_7xx) || type->InFamily(INTEL_FAMILY_8xx))
|
||||||
strcpy(info->name, "Intel Extreme Graphics");
|
strcpy(info->name, "Intel Extreme");
|
||||||
else if (type->InFamily(INTEL_FAMILY_8xx))
|
|
||||||
strcpy(info->name, "Intel Extreme Graphics 2");
|
|
||||||
else if (type->InFamily(INTEL_FAMILY_9xx))
|
else if (type->InFamily(INTEL_FAMILY_9xx))
|
||||||
strcpy(info->name, "Intel Graphics Media Accelerator");
|
strcpy(info->name, "Intel GMA");
|
||||||
else if (type->InFamily(INTEL_FAMILY_SER5))
|
|
||||||
strcpy(info->name, "Intel HD/Iris Graphics");
|
|
||||||
else if (type->InFamily(INTEL_FAMILY_POVR))
|
else if (type->InFamily(INTEL_FAMILY_POVR))
|
||||||
strcpy(info->name, "Intel PowerVR Graphics");
|
strcpy(info->name, "Intel PowerVR");
|
||||||
else if (type->InFamily(INTEL_FAMILY_SOC0))
|
else if (type->InFamily(INTEL_FAMILY_SOC0))
|
||||||
strcpy(info->name, "Intel Atom Graphics");
|
strcpy(info->name, "Intel Atom");
|
||||||
|
else if (type->InFamily(INTEL_FAMILY_SER5))
|
||||||
|
strcpy(info->name, "Intel HD/Iris");
|
||||||
|
else
|
||||||
|
strcpy(info->name, "Intel");
|
||||||
|
|
||||||
strcpy(info->chipset, gInfo->shared_info->device_identifier);
|
strcpy(info->chipset, gInfo->shared_info->device_identifier);
|
||||||
strcpy(info->serial_no, "None");
|
strcpy(info->serial_no, "None");
|
||||||
|
|||||||
Reference in New Issue
Block a user