summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/xcb/qdri2context.h
diff options
context:
space:
mode:
authorSamuel Rødal <samuel.rodal@digia.com>2012-10-08 12:53:56 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-10-19 20:24:11 +0200
commit39eaff6773fc4f05fc95473b769b3a2f0301e12b (patch)
treebc2943a5000eab5c3a8e3d2a0b39f654ddbd7059 /src/plugins/platforms/xcb/qdri2context.h
parent9b2e4cd5a8cac007aa702ce5f822e78e54707a07 (diff)
Remove DRI2/OpenGL code paths from xcb plugin.
These were used to test QtWayland, but there are other options available for that now. The DRI2 code hasn't been maintained and doesn't even compile at the moment, so let's just remove it to de-clutter the source. Change-Id: I7db0f4db82348497b9f4d6c2dcf2e13f3ab14a76 Reviewed-by: Uli Schlachter <psychon@znc.in> Reviewed-by: Lars Knoll <lars.knoll@digia.com> Reviewed-by: Thiago Macieira <thiago.macieira@intel.com>
Diffstat (limited to 'src/plugins/platforms/xcb/qdri2context.h')
-rw-r--r--src/plugins/platforms/xcb/qdri2context.h81
1 files changed, 0 insertions, 81 deletions
diff --git a/src/plugins/platforms/xcb/qdri2context.h b/src/plugins/platforms/xcb/qdri2context.h
deleted file mode 100644
index e355eb5c28..0000000000
--- a/src/plugins/platforms/xcb/qdri2context.h
+++ /dev/null
@@ -1,81 +0,0 @@
-/****************************************************************************
-**
-** Copyright (C) 2012 Digia Plc and/or its subsidiary(-ies).
-** Contact: http://www.qt-project.org/legal
-**
-** This file is part of the plugins of the Qt Toolkit.
-**
-** $QT_BEGIN_LICENSE:LGPL$
-** Commercial License Usage
-** Licensees holding valid commercial Qt licenses may use this file in
-** accordance with the commercial license agreement provided with the
-** Software or, alternatively, in accordance with the terms contained in
-** a written agreement between you and Digia. For licensing terms and
-** conditions see http://qt.digia.com/licensing. For further information
-** use the contact form at http://qt.digia.com/contact-us.
-**
-** GNU Lesser General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU Lesser
-** General Public License version 2.1 as published by the Free Software
-** Foundation and appearing in the file LICENSE.LGPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU Lesser General Public License version 2.1 requirements
-** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
-**
-** In addition, as a special exception, Digia gives you certain additional
-** rights. These rights are described in the Digia Qt LGPL Exception
-** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
-**
-** GNU General Public License Usage
-** Alternatively, this file may be used under the terms of the GNU
-** General Public License version 3.0 as published by the Free Software
-** Foundation and appearing in the file LICENSE.GPL included in the
-** packaging of this file. Please review the following information to
-** ensure the GNU General Public License version 3.0 requirements will be
-** met: http://www.gnu.org/copyleft/gpl.html.
-**
-**
-** $QT_END_LICENSE$
-**
-****************************************************************************/
-
-#ifndef QDRI2CONTEXT_H
-#define QDRI2CONTEXT_H
-
-#include <qpa/qplatformopenglcontext.h>
-
-struct xcb_dri2_dri2_buffer_t;
-
-QT_BEGIN_NAMESPACE
-
-class QXcbWindow;
-class QDri2ContextPrivate;
-
-class QDri2Context : public QPlatformOpenGLContext
-{
- Q_DECLARE_PRIVATE(QDri2Context);
-public:
- QDri2Context(QXcbWindow *window);
- ~QDri2Context();
-
- void makeCurrent();
- void doneCurrent();
- void swapBuffers();
- void* getProcAddress(const QString& procName);
-
- void resize(const QSize &size);
-
- QPlatformWindowFormat platformWindowFormat() const;
-
- void *eglContext() const;
-
-protected:
- xcb_dri2_dri2_buffer_t *backBuffer();
- QScopedPointer<QDri2ContextPrivate> d_ptr;
-private:
- Q_DISABLE_COPY(QDri2Context)
-};
-
-QT_END_NAMESPACE
-
-#endif // QDRI2CONTEXT_H