7f21f2ebccb6723a07e30271b576ed58d77a5609
[profile/ivi/qtbase.git] / src / plugins / platforms / wayland / gl_integration / readback_cgl / qwaylandreadbackcglcontext.cpp
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** This file is part of the plugins of the Qt Toolkit.
8 **
9 ** $QT_BEGIN_LICENSE:LGPL$
10 ** GNU Lesser General Public License Usage
11 ** This file may be used under the terms of the GNU Lesser General Public
12 ** License version 2.1 as published by the Free Software Foundation and
13 ** appearing in the file LICENSE.LGPL included in the packaging of this
14 ** file. Please review the following information to ensure the GNU Lesser
15 ** General Public License version 2.1 requirements will be met:
16 ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
17 **
18 ** In addition, as a special exception, Nokia gives you certain additional
19 ** rights. These rights are described in the Nokia Qt LGPL Exception
20 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
21 **
22 ** GNU General Public License Usage
23 ** Alternatively, this file may be used under the terms of the GNU General
24 ** Public License version 3.0 as published by the Free Software Foundation
25 ** and appearing in the file LICENSE.GPL included in the packaging of this
26 ** file. Please review the following information to ensure the GNU General
27 ** Public License version 3.0 requirements will be met:
28 ** http://www.gnu.org/copyleft/gpl.html.
29 **
30 ** Other Usage
31 ** Alternatively, this file may be used in accordance with the terms and
32 ** conditions contained in a signed written agreement between you and Nokia.
33 **
34 **
35 **
36 **
37 **
38 ** $QT_END_LICENSE$
39 **
40 ****************************************************************************/
41
42 #include "qwaylandreadbackcglcontext.h"
43
44 #include "qwaylandshmbackingstore.h"
45 #include "qwaylandreadbackcglwindow.h"
46
47 #include <QtGui/QGuiGLContext>
48 #include <QtCore/QDebug>
49
50 #include <OpenGL/OpenGL.h>
51 #include <OpenGL/glext.h>
52
53 #include <QtPlatformSupport/private/cglconvenience_p.h>
54
55 QWaylandReadbackCGLContext::QWaylandReadbackCGLContext(QPlatformGLContext *share)
56     : QPlatformGLContext()
57 {
58     Q_UNUSED(share);
59     m_glContext = qcgl_createGlContext();
60 }
61
62 QSurfaceFormat QWaylandReadbackCGLContext::format() const
63 {
64     return qcgl_surfaceFormat();
65 }
66
67 bool QWaylandReadbackCGLContext::makeCurrent(QPlatformSurface *surface)
68 {
69     QWaylandReadbackCGLWindow *window = static_cast<QWaylandReadbackCGLWindow *>(surface);
70     CGLSetPBuffer(m_glContext, window->pixelBuffer(), 0, 0, 0);
71     CGLSetCurrentContext(m_glContext);
72     return true;
73 }
74
75 void QWaylandReadbackCGLContext::doneCurrent()
76 {
77     CGLSetCurrentContext(0);
78 }
79
80 void QWaylandReadbackCGLContext::swapBuffers(QPlatformSurface *surface)
81 {
82     Q_UNUSED(surface);
83
84     if (QGuiGLContext::currentContext()->handle() != this) {
85         makeCurrent(surface);
86     }
87     CGLFlushDrawable(m_glContext);
88
89     QWaylandReadbackCGLWindow *window = static_cast<QWaylandReadbackCGLWindow *>(surface);
90
91     QSize size = window->geometry().size();
92
93     QImage img(size,QImage::Format_ARGB32);
94     img.fill(Qt::red);
95     const uchar *constBits = img.bits();
96     void *pixels = const_cast<uchar *>(constBits);
97
98 //    glReadPixels(0,0, size.width(), size.height(), GL_RGBA,GL_UNSIGNED_BYTE, pixels);
99 //    img = img.mirrored();
100 //    qgl_byteSwapImage(img,GL_UNSIGNED_INT_8_8_8_8_REV);
101
102     constBits = img.bits();
103
104     const uchar *constDstBits = window->buffer();
105     uchar *dstBits = const_cast<uchar *>(constDstBits);
106     memcpy(dstBits,constBits,(img.width()*4) * img.height());
107
108     window->damage(QRect(QPoint(0,0),size));
109     window->waitForFrameSync();
110 }
111
112 void (*QWaylandReadbackCGLContext::getProcAddress(const QByteArray &procName)) ()
113 {
114     return qcgl_getProcAddress(procName);
115 }
116