Merge branch 'KDE/4.8'
This commit is contained in:
commit
9c174905d3
1 changed files with 6 additions and 2 deletions
|
@ -366,10 +366,14 @@ static ChipClass detectIntelClass(const QByteArray &chipset)
|
||||||
chipset.contains("Q45/Q43") ||
|
chipset.contains("Q45/Q43") ||
|
||||||
chipset.contains("G41") ||
|
chipset.contains("G41") ||
|
||||||
chipset.contains("B43") ||
|
chipset.contains("B43") ||
|
||||||
chipset.contains("Ironlake") ||
|
chipset.contains("Ironlake"))
|
||||||
chipset.contains("Sandybridge")) // GL 3.1, CL 1.1, DX 10.1
|
|
||||||
return I965;
|
return I965;
|
||||||
|
|
||||||
|
// GL 3.1, CL 1.1, DX 10.1
|
||||||
|
if (chipset.contains("Sandybridge")) {
|
||||||
|
return SandyBridge;
|
||||||
|
}
|
||||||
|
|
||||||
return UnknownIntel;
|
return UnknownIntel;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue