diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-11-20 09:52:03 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-11-20 13:50:51 +0100 |
commit | a55f740045d6d30e1ef5522889d2dc359ca5784a (patch) | |
tree | cf05fa9cd35419dc488e96f23c67d4eb308f71e0 /vcl/opengl/DeviceInfo.cxx | |
parent | dcdc8df2e6d740dd75ff6e28727ca757e4882f86 (diff) |
include the unx part for getting OpenGL driver & device information
desktop/unx/source/glxtest.cxx is taken directly from the Mozilla
project.
THe whole concept is taken from Mozilla and is based on starting an
early process that creates an OpenGL context. This prevents crashing
drivers to crash Libreoffice.
We read the information from the pipe as soon as we create the first vcl
Window. In that place we then decide if the device/driver combination is
blacklisted.
Change-Id: I2624d4ce06d503281a4459cf3174f57cf1f7b733
Diffstat (limited to 'vcl/opengl/DeviceInfo.cxx')
-rw-r--r-- | vcl/opengl/DeviceInfo.cxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/vcl/opengl/DeviceInfo.cxx b/vcl/opengl/DeviceInfo.cxx new file mode 100644 index 000000000000..135e0e7cf04e --- /dev/null +++ b/vcl/opengl/DeviceInfo.cxx @@ -0,0 +1,16 @@ +/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ +/* + * This file is part of the LibreOffice project. + * + * This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. + */ + +#include "opengl/DeviceInfo.hxx" + +OpenGLDeviceInfo::~OpenGLDeviceInfo() +{ +} + +/* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |