~alan-griffiths/miral/fix-1645284

« back to all changes in this revision

Viewing changes to miral-qt/src/platforms/mirserver/miropenglcontext.h

  • Committer: Alan Griffiths
  • Date: 2016-11-07 17:59:19 UTC
  • mfrom: (436.1.1 miral2)
  • Revision ID: alan@octopull.co.uk-20161107175919-stbb64i7j1htgog2
[miral-qt] delete all as qtmir work on MirAL has shifted to lp:~unity-team/qtmir/miral-qt-integration and this is a needless distration

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2013-2016 Canonical, Ltd.
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify it under
5
 
 * the terms of the GNU Lesser General Public License version 3, as published by
6
 
 * the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful, but WITHOUT
9
 
 * ANY WARRANTY; without even the implied warranties of MERCHANTABILITY,
10
 
 * SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11
 
 * Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 */
16
 
 
17
 
#ifndef MIROPENGLCONTEXT_H
18
 
#define MIROPENGLCONTEXT_H
19
 
 
20
 
#include <qpa/qplatformopenglcontext.h>
21
 
 
22
 
#ifdef QGL_DEBUG
23
 
#include <QOpenGLDebugLogger>
24
 
#endif
25
 
 
26
 
class ScreenWindow;
27
 
namespace mir { namespace graphics { class Display; class GLConfig; }}
28
 
 
29
 
class MirOpenGLContext : public QObject, public QPlatformOpenGLContext
30
 
{
31
 
    Q_OBJECT
32
 
public:
33
 
    MirOpenGLContext(
34
 
        mir::graphics::Display &display,
35
 
        mir::graphics::GLConfig &gl_config
36
 
        , const QSurfaceFormat &);
37
 
    ~MirOpenGLContext() = default;
38
 
 
39
 
    QSurfaceFormat format() const override;
40
 
    void swapBuffers(QPlatformSurface *surface) override;
41
 
 
42
 
    bool makeCurrent(QPlatformSurface *surface) override;
43
 
    void doneCurrent() override;
44
 
 
45
 
    bool isSharing() const override { return false; }
46
 
 
47
 
    QFunctionPointer getProcAddress(const QByteArray &procName) override;
48
 
 
49
 
#ifdef QGL_DEBUG
50
 
    Q_SLOT void onGlDebugMessageLogged(QOpenGLDebugMessage m) { qDebug() << m; }
51
 
#endif
52
 
 
53
 
private:
54
 
    QSurfaceFormat m_format;
55
 
    ScreenWindow *m_currentWindow;
56
 
#ifdef QGL_DEBUG
57
 
    QOpenGLDebugLogger *m_logger;
58
 
#endif
59
 
};
60
 
 
61
 
#endif // MIROPENGLCONTEXT_H