eglfs refactor: Query screen and format info from hooks
[profile/ivi/qtbase.git] / src / plugins / platforms / eglfs / qeglfshooks_stub.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 qmake spec 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 "qeglfshooks.h"
43
44 QT_BEGIN_NAMESPACE
45
46 void QEglFSHooks::platformInit()
47 {
48 }
49
50 void QEglFSHooks::platformDestroy()
51 {
52 }
53
54 EGLNativeDisplayType QEglFSHooks::platformDisplay() const
55 {
56     return EGL_DEFAULT_DISPLAY;
57 }
58
59 QSize QEglFSHooks::screenSize() const
60 {
61     return QSize();
62 }
63
64 int QEglFSHooks::screenDepth() const
65 {
66     static int depth = qgetenv("QT_QPA_EGLFS_DEPTH").toInt();
67     return depth == 16 ? 16 : 32;
68 }
69
70 QImage::Format QEglFSHooks::screenFormat() const
71 {
72     return screenDepth() == 16 ? QImage::Format_RGB16 : QImage::Format_RGB32;
73 }
74
75 QSurfaceFormat QEglFSHooks::defaultSurfaceFormat() const
76 {
77     QSurfaceFormat format;
78     if (screenDepth() == 16) {
79         format.setDepthBufferSize(16);
80         format.setRedBufferSize(5);
81         format.setGreenBufferSize(6);
82         format.setBlueBufferSize(5);
83     } else {
84         format.setDepthBufferSize(24);
85         format.setStencilBufferSize(8);
86         format.setRedBufferSize(8);
87         format.setGreenBufferSize(8);
88         format.setBlueBufferSize(8);
89     }
90
91     static int samples = qgetenv("QT_QPA_EGLFS_MULTISAMPLE").toInt();
92     format.setSamples(samples);
93
94     return format;
95 }
96
97 EGLNativeWindowType QEglFSHooks::createNativeWindow(const QSize &size)
98 {
99     Q_UNUSED(size);
100     return 0;
101 }
102
103 void QEglFSHooks::destroyNativeWindow(EGLNativeWindowType window)
104 {
105     Q_UNUSED(window);
106 }
107
108 bool QEglFSHooks::hasCapability(QPlatformIntegration::Capability cap) const
109 {
110     Q_UNUSED(cap);
111     return false;
112 }
113
114 QEglFSCursor *QEglFSHooks::createCursor(QEglFSScreen *screen) const
115 {
116     Q_UNUSED(screen);
117     return 0;
118 }
119
120 #ifndef EGLFS_PLATFORM_HOOKS
121 QEglFSHooks stubHooks;
122 #endif
123
124 QT_END_NAMESPACE