summaryrefslogtreecommitdiffstats
path: root/src/plugins/platforms/qnx/qqnxwindow.cpp
blob: cf45d062bd514063065740f11b01a2416227ade3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
/***************************************************************************
**
** Copyright (C) 2011 - 2012 Research In Motion
** Contact: http://www.qt-project.org/
**
** This file is part of the plugins of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:LGPL$
** GNU Lesser General Public License Usage
** This file may be used under the terms of the GNU Lesser General Public
** License version 2.1 as published by the Free Software Foundation and
** appearing in the file LICENSE.LGPL included in the packaging of this
** file. Please review the following information to ensure the GNU Lesser
** General Public License version 2.1 requirements will be met:
** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
**
** In addition, as a special exception, Nokia gives you certain additional
** rights. These rights are described in the Nokia Qt LGPL Exception
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
**
** GNU General Public License Usage
** Alternatively, this file may be used under the terms of the GNU General
** Public License version 3.0 as published by the Free Software Foundation
** and appearing in the file LICENSE.GPL included in the packaging of this
** file. Please review the following information to ensure the GNU General
** Public License version 3.0 requirements will be met:
** http://www.gnu.org/copyleft/gpl.html.
**
** Other Usage
** Alternatively, this file may be used in accordance with the terms and
** conditions contained in a signed written agreement between you and Nokia.
**
**
**
**
**
**
** $QT_END_LICENSE$
**
****************************************************************************/

#include "qqnxwindow.h"
#include "qqnxglcontext.h"
#include "qqnxintegration.h"
#include "qqnxscreen.h"

#include <QtGui/QWindow>
#include <QtGui/QWindowSystemInterface>

#include <QtCore/QDebug>

#include <errno.h>

QT_BEGIN_NAMESPACE

QQnxWindow::QQnxWindow(QWindow *window, screen_context_t context)
    : QPlatformWindow(window),
      m_screenContext(context),
      m_window(0),
      m_currentBufferIndex(-1),
      m_previousBufferIndex(-1),
      m_platformOpenGLContext(0),
      m_screen(0),
      m_parentWindow(0),
      m_visible(true)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window << ", size =" << window->size();
#endif
    int result;

    // Create child QNX window
    errno = 0;
    result = screen_create_window_type(&m_window, m_screenContext, SCREEN_CHILD_WINDOW);
    if (result != 0) {
        qFatal("QQnxWindow: failed to create window, errno=%d", errno);
    }

    // Set window buffer usage based on rendering API
    int val;
    QSurface::SurfaceType surfaceType = window->surfaceType();
    switch (surfaceType) {
    case QSurface::RasterSurface:
        val = SCREEN_USAGE_NATIVE | SCREEN_USAGE_READ | SCREEN_USAGE_WRITE;
        break;
    case QSurface::OpenGLSurface:
        val = SCREEN_USAGE_OPENGL_ES2;
        break;
    default:
        qFatal("QQnxWindow: unsupported window API");
        break;
    }

    errno = 0;
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_USAGE, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window buffer usage, errno=%d", errno);
    }

    // Alpha channel is always pre-multiplied if present
    errno = 0;
    val = SCREEN_PRE_MULTIPLIED_ALPHA;
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_ALPHA_MODE, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window alpha mode, errno=%d", errno);
    }

    // Make the window opaque
    errno = 0;
    val = SCREEN_TRANSPARENCY_NONE;
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_TRANSPARENCY, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window transparency, errno=%d", errno);
    }

    // Set the window swap interval
    errno = 0;
    val = 1;
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_SWAP_INTERVAL, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window swap interval, errno=%d", errno);
    }

    // Assign the window to the primary display (this is the default specified by screen).
    setScreen(QQnxScreen::primaryDisplay());

    // Add the window to the root of the hierarchy
    QQnxScreen::addWindow(this);

    // Add window to plugin's window mapper
    QQnxIntegration::addWindow(m_window, window);
}

QQnxWindow::~QQnxWindow()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    // Remove from plugin's window mapper
    QQnxIntegration::removeWindow(m_window);

    // Remove from parent's Hierarchy.
    removeFromParent();
    QQnxScreen::updateHierarchy();

    // We shouldn't allow this case unless QT allows it. Does it? Or should we send the
    // handleCloseEvent on all children when this window is deleted?
    if (m_childWindows.size() > 0)
        qFatal("QQnxWindow: window destroyed before children!");

    // Cleanup QNX window and its buffers
    screen_destroy_window(m_window);
}

void QQnxWindow::setGeometry(const QRect &rect)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window() << ", (" << rect.x() << "," << rect.y() << "," << rect.width() << "," << rect.height() << ")";
#endif

    QRect oldGeometry = geometry();

    // Call base class method
    QPlatformWindow::setGeometry(rect);

    // Set window geometry equal to widget geometry
    errno = 0;
    int val[2];
    val[0] = rect.x();
    val[1] = rect.y();
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_POSITION, val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window position, errno=%d", errno);
    }

    errno = 0;
    val[0] = rect.width();
    val[1] = rect.height();
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_SIZE, val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window size, errno=%d", errno);
    }

    // Set viewport size equal to window size
    errno = 0;
    result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_SOURCE_SIZE, val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window source size, errno=%d", errno);
    }

    // Now move all children.
    QPoint offset;
    if (!oldGeometry.isEmpty()) {
        offset = rect.topLeft();
        offset -= oldGeometry.topLeft();

        QList<QQnxWindow*>::iterator it;
        for (it = m_childWindows.begin(); it != m_childWindows.end(); it++) {
            (*it)->offset(offset);
        }
    }
}

void QQnxWindow::offset(const QPoint &offset)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    // Move self and then children.
    QRect newGeometry = geometry();
    newGeometry.translate(offset);

    // Call the base class
    QPlatformWindow::setGeometry(newGeometry);

    int val[2];

    errno = 0;
    val[0] = newGeometry.x();
    val[1] = newGeometry.y();
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_POSITION, val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window position, errno=%d", errno);
    }

    QList<QQnxWindow*>::iterator it;
    for (it = m_childWindows.begin(); it != m_childWindows.end(); it++) {
        (*it)->offset(offset);
    }
}

void QQnxWindow::setVisible(bool visible)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window() << "visible =" << visible;
#endif

    m_visible = visible;

    QQnxWindow *root = this;
    while (root->m_parentWindow)
        root = root->m_parentWindow;

    root->updateVisibility(root->m_visible);

    window()->requestActivateWindow();
}

void QQnxWindow::updateVisibility(bool parentVisible)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "parentVisible =" << parentVisible << "window =" << window();
#endif
    // Set window visibility
    errno = 0;
    int val = (m_visible && parentVisible) ? 1 : 0;
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_VISIBLE, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window visibility, errno=%d", errno);
    }

    QList<QQnxWindow *>::iterator it;
    for (it = m_childWindows.begin(); it != m_childWindows.end(); it++) {
        (*it)->updateVisibility(m_visible && parentVisible);
    }
}

void QQnxWindow::setOpacity(qreal level)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window() << "opacity =" << level;
#endif
    // Set window global alpha
    errno = 0;
    int val = (int)(level * 255);
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_GLOBAL_ALPHA, &val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window global alpha, errno=%d", errno);
    }

    // TODO: How to handle children of this window? If we change all the visibilities, then
    //       the transparency will look wrong...
}

void QQnxWindow::setBufferSize(const QSize &size)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window() << "size =" << size;
#endif
    // Set window buffer size
    errno = 0;
    int val[2] = { size.width(), size.height() };
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_BUFFER_SIZE, val);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window buffer size, errno=%d", errno);
    }

    // Create window buffers if they do not exist
    if (!hasBuffers()) {
        // Get pixel format from EGL config if using OpenGL;
        // otherwise inherit pixel format of window's screen
        if (m_platformOpenGLContext != 0) {
            val[0] = platformWindowFormatToNativeFormat(m_platformOpenGLContext->format());
        } else {
            val[0] = m_screen->nativeFormat();
        }

        errno = 0;
        result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_FORMAT, val);
        if (result != 0) {
            qFatal("QQnxWindow: failed to set window pixel format, errno=%d", errno);
        }

        errno = 0;
        result = screen_create_window_buffers(m_window, MAX_BUFFER_COUNT);
        if (result != 0) {
            qFatal("QQnxWindow: failed to create window buffers, errno=%d", errno);
        }
    }

    // Cache new buffer size
    m_bufferSize = size;

    // Buffers were destroyed; reacquire them
    m_currentBufferIndex = -1;
    m_previousDirty = QRegion();
    m_scrolled = QRegion();
}

QQnxBuffer &QQnxWindow::renderBuffer()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    // Check if render buffer is invalid
    if (m_currentBufferIndex == -1) {
        // Get all buffers available for rendering
        errno = 0;
        screen_buffer_t buffers[MAX_BUFFER_COUNT];
        int result = screen_get_window_property_pv(m_window, SCREEN_PROPERTY_RENDER_BUFFERS, (void **)buffers);
        if (result != 0) {
            qFatal("QQnxWindow: failed to query window buffers, errno=%d", errno);
        }

        // Wrap each buffer
        for (int i = 0; i < MAX_BUFFER_COUNT; ++i) {
            m_buffers[i] = QQnxBuffer(buffers[i]);
        }

        // Use the first available render buffer
        m_currentBufferIndex = 0;
        m_previousBufferIndex = -1;
    }

    return m_buffers[m_currentBufferIndex];
}

void QQnxWindow::scroll(const QRegion &region, int dx, int dy, bool flush)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    copyBack(region, dx, dy, flush);
    m_scrolled += region;
}

void QQnxWindow::post(const QRegion &dirty)
{
    // Check if render buffer exists and something was rendered
    if (m_currentBufferIndex != -1 && !dirty.isEmpty()) {
#if defined(QQNXWINDOW_DEBUG)
        qDebug() << "QQnxWindow::post - window =" << window();
#endif
        QQnxBuffer &currentBuffer = m_buffers[m_currentBufferIndex];

        // Copy unmodified region from old render buffer to new render buffer;
        // required to allow partial updates
        QRegion preserve = m_previousDirty - dirty - m_scrolled;
        copyBack(preserve, 0, 0);

        // Calculate region that changed
        QRegion modified = preserve + dirty + m_scrolled;
        QRect rect = modified.boundingRect();
        int dirtyRect[4] = { rect.x(), rect.y(), rect.x() + rect.width(), rect.y() + rect.height() };

        // Update the display with contents of render buffer
        errno = 0;
        int result = screen_post_window(m_window, currentBuffer.nativeBuffer(), 1, dirtyRect, 0);
        if (result != 0) {
            qFatal("QQnxWindow: failed to post window buffer, errno=%d", errno);
        }

        // Advance to next nender buffer
        m_previousBufferIndex = m_currentBufferIndex++;
        if (m_currentBufferIndex >= MAX_BUFFER_COUNT) {
            m_currentBufferIndex = 0;
        }

        // Save modified region and clear scrolled region
        m_previousDirty = dirty;
        m_scrolled = QRegion();

        // Notify screen that window posted
        if (m_screen != 0) {
            m_screen->onWindowPost(this);
        }
    }
}

void QQnxWindow::setScreen(QQnxScreen *platformScreen)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window() << "platformScreen =" << platformScreen;
#endif

    if (m_screen == platformScreen)
        return;

    m_screen = platformScreen;

    // Move window to proper screen/display
    errno = 0;
    screen_display_t display = platformScreen->nativeDisplay();
    int result = screen_set_window_property_pv(m_window, SCREEN_PROPERTY_DISPLAY, (void **)&display);
    if (result != 0) {
        qFatal("QQnxWindow: failed to set window display, errno=%d", errno);
    }

    // Add window to display's window group
    errno = 0;
    result = screen_join_window_group(m_window, platformScreen->windowGroupName());
    if (result != 0) {
        qFatal("QQnxWindow: failed to join window group, errno=%d", errno);
    }

    QList<QQnxWindow*>::iterator it;
    for (it = m_childWindows.begin(); it != m_childWindows.end(); it++) {
        // Only subwindows and tooltips need necessarily be moved to another display with the window.
        if ((window()->windowType() & Qt::WindowType_Mask) == Qt::SubWindow ||
            (window()->windowType() & Qt::WindowType_Mask) == Qt::ToolTip)
            (*it)->setScreen(platformScreen);
    }

    QQnxScreen::updateHierarchy();
}

void QQnxWindow::removeFromParent()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    // Remove from old Hierarchy position
    if (m_parentWindow) {
        if (m_parentWindow->m_childWindows.removeAll(this))
            m_parentWindow = 0;
        else
            qFatal("QQnxWindow: Window Hierarchy broken; window has parent, but parent hasn't got child.");
    } else {
        QQnxScreen::removeWindow(this);
    }
}

void QQnxWindow::setParent(const QPlatformWindow *window)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << this->window() << "platformWindow =" << window;
#endif
    // Cast away the const, we need to modify the hierarchy.
    QQnxWindow *newParent = 0;

    if (window)
        newParent = static_cast<QQnxWindow*>((QPlatformWindow *)window);

    if (newParent == m_parentWindow)
        return;

    removeFromParent();
    m_parentWindow = newParent;

    // Add to new hierarchy position.
    if (m_parentWindow) {
        if (m_parentWindow->m_screen != m_screen)
            setScreen(m_parentWindow->m_screen);

        m_parentWindow->m_childWindows.push_back(this);
    } else {
        QQnxScreen::addWindow(this);
    }

    QQnxScreen::updateHierarchy();
}

void QQnxWindow::raise()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif

    QQnxWindow *oldParent = m_parentWindow;
    if (oldParent) {
        removeFromParent();
        oldParent->m_childWindows.push_back(this);
    } else {
        QQnxScreen::raiseWindow(this);
    }

    QQnxScreen::updateHierarchy();
}

void QQnxWindow::lower()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif

    QQnxWindow *oldParent = m_parentWindow;
    if (oldParent) {
        removeFromParent();
        oldParent->m_childWindows.push_front(this);
    } else {
        QQnxScreen::lowerWindow(this);
    }

    QQnxScreen::updateHierarchy();
}

void QQnxWindow::requestActivateWindow()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif

    // TODO: Tell screen to set keyboard focus to this window.

    // Notify that we gained focus.
    gainedFocus();
}

void QQnxWindow::gainedFocus()
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif

    // Got focus
    QWindowSystemInterface::handleWindowActivated(window());
}

void QQnxWindow::setPlatformOpenGLContext(QQnxGLContext *platformOpenGLContext)
{
    // This function does not take ownership of the platform gl context.
    // It is owned by the frontend QOpenGLContext
    m_platformOpenGLContext = platformOpenGLContext;
}

void QQnxWindow::updateZorder(int &topZorder)
{
    errno = 0;
    int result = screen_set_window_property_iv(m_window, SCREEN_PROPERTY_ZORDER, &topZorder);
    topZorder++;

    if (result != 0)
        qFatal("QQnxWindow: failed to set window z-order=%d, errno=%d, mWindow=%p", topZorder, errno, m_window);

    QList<QQnxWindow*>::const_iterator it;

    for (it = m_childWindows.begin(); it != m_childWindows.end(); it++)
        (*it)->updateZorder(topZorder);
}

void QQnxWindow::copyBack(const QRegion &region, int dx, int dy, bool flush)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO << "window =" << window();
#endif
    int result;

    // Abort if previous buffer is invalid
    if (m_previousBufferIndex == -1) {
        return;
    }

    // Abort if nothing to copy
    if (region.isEmpty()) {
        return;
    }

    QQnxBuffer &currentBuffer = m_buffers[m_currentBufferIndex];
    QQnxBuffer &previousBuffer = m_buffers[m_previousBufferIndex];

    // Break down region into non-overlapping rectangles
    QVector<QRect> rects = region.rects();
    for (int i = rects.size() - 1; i >= 0; i--) {
        // Clip rectangle to bounds of target
        QRect rect = rects[i].intersected( currentBuffer.rect() );

        if (rect.isEmpty())
            continue;

        // Setup blit operation
        int attribs[] = { SCREEN_BLIT_SOURCE_X, rect.x(),
                          SCREEN_BLIT_SOURCE_Y, rect.y(),
                          SCREEN_BLIT_SOURCE_WIDTH, rect.width(),
                          SCREEN_BLIT_SOURCE_HEIGHT, rect.height(),
                          SCREEN_BLIT_DESTINATION_X, rect.x() + dx,
                          SCREEN_BLIT_DESTINATION_Y, rect.y() + dy,
                          SCREEN_BLIT_DESTINATION_WIDTH, rect.width(),
                          SCREEN_BLIT_DESTINATION_HEIGHT, rect.height(),
                          SCREEN_BLIT_END };

        // Queue blit operation
        errno = 0;
        result = screen_blit(m_screenContext, currentBuffer.nativeBuffer(), previousBuffer.nativeBuffer(), attribs);
        if (result != 0) {
            qFatal("QQnxWindow: failed to blit buffers, errno=%d", errno);
        }
    }

    // Check if flush requested
    if (flush) {
        // Wait for all blits to complete
        errno = 0;
        result = screen_flush_blits(m_screenContext, SCREEN_WAIT_IDLE);
        if (result != 0) {
            qFatal("QQnxWindow: failed to flush blits, errno=%d", errno);
        }

        // Buffer was modified outside the CPU
        currentBuffer.invalidateInCache();
    }
}

int QQnxWindow::platformWindowFormatToNativeFormat(const QSurfaceFormat &format)
{
#if defined(QQNXWINDOW_DEBUG)
    qDebug() << Q_FUNC_INFO;
#endif
    // Extract size of colour channels from window format
    int redSize = format.redBufferSize();
    if (redSize == -1) {
        qFatal("QQnxWindow: red size not defined");
    }

    int greenSize = format.greenBufferSize();
    if (greenSize == -1) {
        qFatal("QQnxWindow: green size not defined");
    }

    int blueSize = format.blueBufferSize();
    if (blueSize == -1) {
        qFatal("QQnxWindow: blue size not defined");
    }

    // select matching native format
    if (redSize == 5 && greenSize == 6 && blueSize == 5) {
        return SCREEN_FORMAT_RGB565;
    } else if (redSize == 8 && greenSize == 8 && blueSize == 8) {
        return SCREEN_FORMAT_RGBA8888;
    } else {
        qFatal("QQnxWindow: unsupported pixel format");
        return 0;
    }
}

QT_END_NAMESPACE