summaryrefslogtreecommitdiff
path: root/vcl/inc/opengl
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-30 21:01:35 +0100
committerJan Holesovsky <kendy@collabora.com>2014-12-02 15:47:38 +0100
commit5d879e4a174054f3aa103b933e940b6bbd1c5076 (patch)
tree7b435d8848ec6562798e3c743073dc3b4ec0d996 /vcl/inc/opengl
parenta915cfcf5c200f521fe8f8724d57c18b5eb4ca6f (diff)
whitelist some drivers
Especially the ones from our developer machines as they are better tested than anything else. Change-Id: Id6ff6bcae314c03453d82ee4e64aaef1bd5ed84a
Diffstat (limited to 'vcl/inc/opengl')
-rw-r--r--vcl/inc/opengl/win/WinDeviceInfo.hxx4
1 files changed, 3 insertions, 1 deletions
diff --git a/vcl/inc/opengl/win/WinDeviceInfo.hxx b/vcl/inc/opengl/win/WinDeviceInfo.hxx
index 9abddd0e4c53..21f14d9272bd 100644
--- a/vcl/inc/opengl/win/WinDeviceInfo.hxx
+++ b/vcl/inc/opengl/win/WinDeviceInfo.hxx
@@ -82,7 +82,7 @@ struct DriverInfo
DriverInfo(OperatingSystem os, const OUString& vendor, DeviceFamilyVector* devices,
VersionComparisonOp op,
- uint64_t driverVersion, const char *suggestedVersion = nullptr,
+ uint64_t driverVersion, bool bWhiteListed = false, const char *suggestedVersion = nullptr,
bool ownDevices = false);
DriverInfo();
@@ -101,6 +101,8 @@ struct DriverInfo
// deallocated. False by default.
bool mbDeleteDevices;
+ bool mbWhitelisted;
+
VersionComparisonOp meComparisonOp;
/* versions are assumed to be A.B.C.D packed as 0xAAAABBBBCCCCDDDD */