summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Holesovsky <kendy@collabora.com>2016-09-20 09:47:36 +0200
committerJan Holesovsky <kendy@collabora.com>2016-09-20 09:47:36 +0200
commit81b9c4e20a1749d143715eb4367be104da7c872f (patch)
treebdc19e0a782a99265ce6510aef466218c5c7fc24
parentcd98a0fd6c15069a5e1e5dfccedac13da686083b (diff)
tdf#102295: AMD actually has two vendor id's.
Change-Id: I9cc1341c8f8d154927a778dfa15b8d3013a9a487
-rw-r--r--vcl/source/opengl/OpenGLHelper.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/opengl/OpenGLHelper.cxx b/vcl/source/opengl/OpenGLHelper.cxx
index dc19e4cc2fe7..cf508b378842 100644
--- a/vcl/source/opengl/OpenGLHelper.cxx
+++ b/vcl/source/opengl/OpenGLHelper.cxx
@@ -782,7 +782,7 @@ bool OpenGLHelper::isDeviceBlacklisted()
bBlacklisted = aInfo.isDeviceBlocked();
if (aInfo.GetWindowsVersion() == 0x00060001 && /* Windows 7 */
- aInfo.GetAdapterVendorID() == "0x1022") /* AMD */
+ (aInfo.GetAdapterVendorID() == "0x1002" || aInfo.GetAdapterVendorID() == "0x1022")) /* AMD */
{
SAL_INFO("vcl.opengl", "Relaxing watchdog timings.");
OpenGLZone::relaxWatchdogTimings();