GPU: Improve detection of intels UHD graphics

This commit is contained in:
2018-12-05 04:22:32 +01:00
parent 4d4f0dbd8d
commit a7712e8594

View File

@@ -299,7 +299,9 @@ void gpu_extensions_init(void)
GG.device = GPU_DEVICE_INTEL;
GG.driver = GPU_DRIVER_OFFICIAL;
if (strstr(renderer, "UHD Graphics")) {
if (strstr(renderer, "UHD Graphics") ||
strstr(renderer, "Kaby Lake GT2"))
{
GG.device |= GPU_DEVICE_INTEL_UHD;
}
}