vcl/opengl/win/WinDeviceInfo.cxx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)
New commits: commit 55bd0ac154a7118f7cce48ffd1e44a48d9099413 Author: Markus Mohrhard <[email protected]> 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 <[email protected]> Reviewed-by: Markus Mohrhard <[email protected]> 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); _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
