vcl/opengl/win/WinDeviceInfo.cxx | 8 ++++++++ 1 file changed, 8 insertions(+)
New commits: commit 325cf094e2392893928f2cfcdd67d74bfebdd16e Author: Michael Meeks <michael.me...@collabora.com> Date: Wed Oct 7 10:53:28 2015 +0100 tdf#94686: Disable all vendors except for AMD/ATI/Intel/NVIDIA for now Change-Id: I769aa1e0645b36f8623187e2e485ad2c474914c1 Reviewed-on: https://gerrit.libreoffice.org/19222 Reviewed-by: Tor Lillqvist <t...@collabora.com> Tested-by: Tor Lillqvist <t...@collabora.com> diff --git a/vcl/opengl/win/WinDeviceInfo.cxx b/vcl/opengl/win/WinDeviceInfo.cxx index e3dec31..768930e 100644 --- a/vcl/opengl/win/WinDeviceInfo.cxx +++ b/vcl/opengl/win/WinDeviceInfo.cxx @@ -727,6 +727,14 @@ bool WinOpenGLDeviceInfo::isDeviceBlocked() return true; } + /* Anything that's exotic eg. VMWare / VirtualBox GL drivers + we're not interested in for now. */ + if (maAdapterVendorID != GetDeviceVendor(wgl::VendorAMD) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorATI) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorIntel) && + maAdapterVendorID != GetDeviceVendor(wgl::VendorNVIDIA)) + return true; + return FindBlocklistedDeviceInList(); } _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits