Compile fix for kms plugin.
[profile/ivi/qtbase.git] / src / plugins / platforms / kms / qkmscontext.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the plugins of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:LGPL$
9 ** GNU Lesser General Public License Usage
10 ** This file may be used under the terms of the GNU Lesser General Public
11 ** License version 2.1 as published by the Free Software Foundation and
12 ** appearing in the file LICENSE.LGPL included in the packaging of this
13 ** file. Please review the following information to ensure the GNU Lesser
14 ** General Public License version 2.1 requirements will be met:
15 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
16 **
17 ** In addition, as a special exception, Nokia gives you certain additional
18 ** rights. These rights are described in the Nokia Qt LGPL Exception
19 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
20 **
21 ** GNU General Public License Usage
22 ** Alternatively, this file may be used under the terms of the GNU General
23 ** Public License version 3.0 as published by the Free Software Foundation
24 ** and appearing in the file LICENSE.GPL included in the packaging of this
25 ** file. Please review the following information to ensure the GNU General
26 ** Public License version 3.0 requirements will be met:
27 ** http://www.gnu.org/copyleft/gpl.html.
28 **
29 ** Other Usage
30 ** Alternatively, this file may be used in accordance with the terms and
31 ** conditions contained in a signed written agreement between you and Nokia.
32 **
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qkmsscreen.h"
43 #include "qkmsdevice.h"
44 #include "qkmscontext.h"
45 #include "qkmswindow.h"
46
47
48 QT_BEGIN_NAMESPACE
49
50 QKmsContext::QKmsContext(QKmsDevice *device)
51     : QPlatformOpenGLContext(),
52       m_device(device)
53 {
54 }
55
56 bool QKmsContext::makeCurrent(QPlatformSurface *surface)
57 {
58     EGLDisplay display = m_device->eglDisplay();
59     EGLContext context = m_device->eglContext();
60
61     bool ok = eglMakeCurrent(display, EGL_NO_SURFACE,
62                              EGL_NO_SURFACE, context);
63     if (!ok)
64         qWarning("QKmsContext::makeCurrent(): eglError: %d, this: %p",
65                  eglGetError(), this);
66
67     QPlatformWindow *window = static_cast<QPlatformWindow *>(surface);
68     QKmsScreen *screen = static_cast<QKmsScreen *> (QPlatformScreen::platformScreenForWindow(window->window()));
69     screen->bindFramebuffer();
70     return true;
71 }
72
73 void QKmsContext::doneCurrent()
74 {
75     bool ok = eglMakeCurrent(m_device->eglDisplay(), EGL_NO_SURFACE, EGL_NO_SURFACE,
76                              EGL_NO_CONTEXT);
77     if (!ok)
78         qWarning("QKmsContext::doneCurrent(): eglError: %d, this: %p",
79                  eglGetError(), this);
80
81 }
82
83 void QKmsContext::swapBuffers(QPlatformSurface *surface)
84 {
85     //After flush, the current render target should be moved to
86     //latest complete
87     glFlush();
88
89     //Cast context to a window surface and get the screen the context
90     //is on and call swapBuffers on that screen.
91     QPlatformWindow *window = static_cast<QPlatformWindow *>(surface);
92     QKmsScreen *screen = static_cast<QKmsScreen *> (QPlatformScreen::platformScreenForWindow(window->window()));
93     screen->swapBuffers();
94 }
95
96 void (*QKmsContext::getProcAddress(const QByteArray &procName)) ()
97 {
98     return eglGetProcAddress(procName.data());
99 }
100
101
102 EGLContext QKmsContext::eglContext() const
103 {
104     return m_device->eglContext();
105 }
106
107 QSurfaceFormat QKmsContext::format() const
108 {
109     return QSurfaceFormat();
110 }
111
112 GLuint QKmsContext::defaultFramebufferObject(QPlatformSurface *surface) const
113 {
114     QPlatformWindow *window = static_cast<QPlatformWindow *>(surface);
115     QKmsScreen *screen = static_cast<QKmsScreen *> (QPlatformScreen::platformScreenForWindow(window->window()));
116     return screen->framebufferObject();
117 }
118
119 QT_END_NAMESPACE