summaryrefslogtreecommitdiff
path: root/vcl/inc
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-30 21:01:35 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-11-30 21:01:35 +0100
commit82d767a50629aa8e1c6fa005439c92153b22e7f6 (patch)
treeab04b44cc3be06a55a797ca91e80072dbdbe8ed1 /vcl/inc
parent773d2bde7176130ad9ac4a28991a1441ad022faf (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')
-rw-r--r--vcl/inc/opengl/win/WinDeviceInfo.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/vcl/inc/opengl/win/WinDeviceInfo.hxx b/vcl/inc/opengl/win/WinDeviceInfo.hxx
index 2a887c436615..6fb783473898 100644
--- a/vcl/inc/opengl/win/WinDeviceInfo.hxx
+++ b/vcl/inc/opengl/win/WinDeviceInfo.hxx
@@ -12,8 +12,6 @@
#include "opengl/DeviceInfo.hxx"
#include <rtl/ustring.hxx>
-#include <vector>
-#include <stdint.h>
namespace wgl {
@@ -82,7 +80,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 +99,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 */