eglfs: Allow setting screen size through environment variables.
[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 #include <fcntl.h>
45 #include <unistd.h>
46 #include <linux/fb.h>
47 #include <sys/ioctl.h>
48
49 QT_BEGIN_NAMESPACE
50
51 void QEglFSHooks::platformInit()
52 {
53 }
54
55 void QEglFSHooks::platformDestroy()
56 {
57 }
58
59 EGLNativeDisplayType QEglFSHooks::platformDisplay() const
60 {
61     return EGL_DEFAULT_DISPLAY;
62 }
63
64 QSize QEglFSHooks::screenSize() const
65 {
66     static QSize size;
67
68     if (size.isEmpty()) {
69         int width = qgetenv("QT_QPA_EGLFS_WIDTH").toInt();
70         int height = qgetenv("QT_QPA_EGLFS_HEIGHT").toInt();
71
72         if (width && height) {
73             // no need to read fb0
74             size.setWidth(width);
75             size.setHeight(height);
76             return size;
77         }
78
79         struct fb_var_screeninfo vinfo;
80         int fd = open("/dev/fb0", O_RDONLY);
81
82         if (fd != -1) {
83             if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) == -1)
84                 qWarning("Could not query variable screen info.");
85             else
86                 size = QSize(vinfo.xres, vinfo.yres);
87
88             close(fd);
89         } else {
90             qWarning("Failed to open /dev/fb0 to detect screen resolution.");
91         }
92
93         // override fb0 from environment var setting
94         if (width)
95             size.setWidth(width);
96         if (height)
97             size.setHeight(height);
98     }
99
100     return size;
101 }
102
103 int QEglFSHooks::screenDepth() const
104 {
105     static int depth = qgetenv("QT_QPA_EGLFS_DEPTH").toInt();
106
107     if (depth == 0) {
108         struct fb_var_screeninfo vinfo;
109         int fd = open("/dev/fb0", O_RDONLY);
110
111         if (fd != -1) {
112             if (ioctl(fd, FBIOGET_VSCREENINFO, &vinfo) == -1)
113                 qWarning("Could not query variable screen info.");
114             else
115                 depth = vinfo.bits_per_pixel;
116
117             close(fd);
118         } else {
119             qWarning("Failed to open /dev/fb0 to detect screen depth.");
120         }
121     }
122
123     return depth == 0 ? 32 : depth;
124 }
125
126 QImage::Format QEglFSHooks::screenFormat() const
127 {
128     return screenDepth() == 16 ? QImage::Format_RGB16 : QImage::Format_RGB32;
129 }
130
131 QSurfaceFormat QEglFSHooks::surfaceFormatFor(const QSurfaceFormat &inputFormat) const
132 {
133     return inputFormat;
134 }
135
136 EGLNativeWindowType QEglFSHooks::createNativeWindow(const QSize &size, const QSurfaceFormat &format)
137 {
138     Q_UNUSED(size);
139     Q_UNUSED(format);
140     return 0;
141 }
142
143 void QEglFSHooks::destroyNativeWindow(EGLNativeWindowType window)
144 {
145     Q_UNUSED(window);
146 }
147
148 bool QEglFSHooks::hasCapability(QPlatformIntegration::Capability cap) const
149 {
150     Q_UNUSED(cap);
151     return false;
152 }
153
154 QEglFSCursor *QEglFSHooks::createCursor(QEglFSScreen *screen) const
155 {
156     Q_UNUSED(screen);
157     return 0;
158 }
159
160 #ifndef EGLFS_PLATFORM_HOOKS
161 QEglFSHooks stubHooks;
162 #endif
163
164 QT_END_NAMESPACE