[Libreoffice-commits] core.git: vcl/opengl

Markus Mohrhard markus.mohrhard at googlemail.com
Mon Jun 20 13:53:37 UTC 2016


 vcl/opengl/win/WinDeviceInfo.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 55bd0ac154a7118f7cce48ffd1e44a48d9099413
Author: Markus Mohrhard <markus.mohrhard at googlemail.com>
Date:   Fri Jun 17 21:44:49 2016 +0200

    add some OpenGL info to the crash reporter
    
    Change-Id: Id377bc3bd814fad822d577603b1f147b71ad9ae2
    Reviewed-on: https://gerrit.libreoffice.org/26445
    Tested-by: Jenkins <ci at libreoffice.org>
    Reviewed-by: Markus Mohrhard <markus.mohrhard at googlemail.com>

diff --git a/vcl/opengl/win/WinDeviceInfo.cxx b/vcl/opengl/win/WinDeviceInfo.cxx
index e9278b1..b2d5bff 100644
--- a/vcl/opengl/win/WinDeviceInfo.cxx
+++ b/vcl/opengl/win/WinDeviceInfo.cxx
@@ -521,8 +521,10 @@ void writeToLog(SvStream& rStrm, const char* pKey, const OUString rVal)
 
 bool WinOpenGLDeviceInfo::isDeviceBlocked()
 {
-    // CrashReporter::AddKeyAndValue("AdapterVendorId", maAdapterVendorID);
-    // CrashReporter::AddKeyAndValue("AdapterDeviceId", maAdapterDeviceID);
+    CrashReporter::AddKeyValue("OpenGLVendor", maAdapterVendorID);
+    CrashReporter::AddKeyValue("OpenGLDevice", maAdapterDeviceID);
+    CrashReporter::AddKeyValue("OpenGLDriver", maDriverVersion);
+
     SAL_INFO("vcl.opengl", maDriverVersion);
     SAL_INFO("vcl.opengl", maDriverDate);
     SAL_INFO("vcl.opengl", maDeviceID);


More information about the Libreoffice-commits mailing list