|
1 /**************************************************************************** |
|
2 ** |
|
3 ** Copyright (C) 2009 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 QtGui module of the Qt Toolkit. |
|
8 ** |
|
9 ** $QT_BEGIN_LICENSE:LGPL$ |
|
10 ** No Commercial Usage |
|
11 ** This file contains pre-release code and may not be distributed. |
|
12 ** You may use this file in accordance with the terms and conditions |
|
13 ** contained in the Technology Preview License Agreement accompanying |
|
14 ** this package. |
|
15 ** |
|
16 ** GNU Lesser General Public License Usage |
|
17 ** Alternatively, this file may be used under the terms of the GNU Lesser |
|
18 ** General Public License version 2.1 as published by the Free Software |
|
19 ** Foundation and appearing in the file LICENSE.LGPL included in the |
|
20 ** packaging of this file. Please review the following information to |
|
21 ** ensure the GNU Lesser General Public License version 2.1 requirements |
|
22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. |
|
23 ** |
|
24 ** In addition, as a special exception, Nokia gives you certain additional |
|
25 ** rights. These rights are described in the Nokia Qt LGPL Exception |
|
26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. |
|
27 ** |
|
28 ** If you have questions regarding the use of this file, please contact |
|
29 ** Nokia at qt-info@nokia.com. |
|
30 ** |
|
31 ** |
|
32 ** |
|
33 ** |
|
34 ** |
|
35 ** |
|
36 ** |
|
37 ** |
|
38 ** $QT_END_LICENSE$ |
|
39 ** |
|
40 ****************************************************************************/ |
|
41 |
|
42 #include <QtGui/qpaintdevice.h> |
|
43 #include <QtGui/qpixmap.h> |
|
44 #include <QtGui/qwidget.h> |
|
45 #include "qegl_p.h" |
|
46 |
|
47 #include <windows.h> |
|
48 |
|
49 |
|
50 QT_BEGIN_NAMESPACE |
|
51 |
|
52 EGLSurface QEglContext::createSurface(QPaintDevice *device, const QEglProperties *properties) |
|
53 { |
|
54 // Create the native drawable for the paint device. |
|
55 int devType = device->devType(); |
|
56 EGLNativePixmapType pixmapDrawable = 0; |
|
57 EGLNativeWindowType windowDrawable = 0; |
|
58 bool ok; |
|
59 if (devType == QInternal::Pixmap) { |
|
60 pixmapDrawable = 0; |
|
61 ok = (pixmapDrawable != 0); |
|
62 } else if (devType == QInternal::Widget) { |
|
63 windowDrawable = (EGLNativeWindowType)(static_cast<QWidget *>(device))->winId(); |
|
64 ok = (windowDrawable != 0); |
|
65 } else { |
|
66 ok = false; |
|
67 } |
|
68 if (!ok) { |
|
69 qWarning("QEglContext::createSurface(): Cannot create the native EGL drawable"); |
|
70 return EGL_NO_SURFACE; |
|
71 } |
|
72 |
|
73 // Create the EGL surface to draw into, based on the native drawable. |
|
74 const int *props; |
|
75 if (properties) |
|
76 props = properties->properties(); |
|
77 else |
|
78 props = 0; |
|
79 EGLSurface surf; |
|
80 if (devType == QInternal::Widget) |
|
81 surf = eglCreateWindowSurface(dpy, cfg, windowDrawable, props); |
|
82 else |
|
83 surf = eglCreatePixmapSurface(dpy, cfg, pixmapDrawable, props); |
|
84 if (surf == EGL_NO_SURFACE) { |
|
85 qWarning("QEglContext::createSurface(): Unable to create EGL surface, error = 0x%x", eglGetError()); |
|
86 } |
|
87 return surf; |
|
88 } |
|
89 |
|
90 EGLDisplay QEglContext::getDisplay(QPaintDevice *device) |
|
91 { |
|
92 EGLDisplay dpy = 0; |
|
93 HWND win = (static_cast<QWidget*>(device))->winId(); |
|
94 HDC myDc = GetDC(win); |
|
95 if (!myDc) { |
|
96 qWarning("QEglContext::defaultDisplay(): WinCE display is not open"); |
|
97 } |
|
98 dpy = eglGetDisplay(EGLNativeDisplayType(myDc)); |
|
99 if (dpy == EGL_NO_DISPLAY) { |
|
100 qWarning("QEglContext::defaultDisplay(): Falling back to EGL_DEFAULT_DISPLAY"); |
|
101 dpy = eglGetDisplay(EGL_DEFAULT_DISPLAY); |
|
102 } |
|
103 return dpy; |
|
104 } |
|
105 |
|
106 // Set pixel format and other properties based on a paint device. |
|
107 void QEglProperties::setPaintDeviceFormat(QPaintDevice *dev) |
|
108 { |
|
109 int devType = dev->devType(); |
|
110 if (devType == QInternal::Image) |
|
111 setPixelFormat(static_cast<QImage *>(dev)->format()); |
|
112 else |
|
113 setPixelFormat(QImage::Format_RGB16); // XXX |
|
114 } |
|
115 |
|
116 QT_END_NAMESPACE |