From 82d767a50629aa8e1c6fa005439c92153b22e7f6 Mon Sep 17 00:00:00 2001 From: Markus Mohrhard Date: Sun, 30 Nov 2014 21:01:35 +0100 Subject: whitelist some drivers Especially the ones from our developer machines as they are better tested than anything else. Change-Id: Id6ff6bcae314c03453d82ee4e64aaef1bd5ed84a --- vcl/inc/opengl/win/WinDeviceInfo.hxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'vcl/inc') 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 -#include -#include 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 */ -- cgit