summaryrefslogtreecommitdiffstats
path: root/src/plugins/gfxdrivers/eglnullws/eglnullwsscreen.cpp
blob: 341caff8dd219a4a09e9abbde9f4a3e417eab847 (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
#include "eglnullwsscreen.h"
#include "eglnullwswindowsurface.h"
#include "eglnullwsscreenplugin.h"

#include <QHash>
#include <QDebug>

namespace
{
    class EGLNullWSScreenSurfaceFunctions : public QGLScreenSurfaceFunctions
    {
    public:
        virtual bool createNativeWindow(QWidget *, EGLNativeWindowType *native)
            { *native = 0; return true; }
    };
}

EGLNullWSScreen::EGLNullWSScreen(int displayId) : QGLScreen(displayId) {}

EGLNullWSScreen::~EGLNullWSScreen() {}

bool EGLNullWSScreen::initDevice()
{
    setSurfaceFunctions(new EGLNullWSScreenSurfaceFunctions);
    return true;
}

static const QHash<QString, QImage::Format> & formatDictionary()
{
    static QHash<QString, QImage::Format> dictionary;
    if (dictionary.isEmpty()) {
        dictionary["rgb32"]     = QImage::Format_RGB32;
        dictionary["argb32"]    = QImage::Format_ARGB32;
        dictionary["rgb16"]     = QImage::Format_RGB16;
        dictionary["rgb666"]    = QImage::Format_RGB666;
        dictionary["rgb555"]    = QImage::Format_RGB555;
        dictionary["rgb888"]    = QImage::Format_RGB888;
        dictionary["rgb444"]    = QImage::Format_RGB444;
    }
    return dictionary;
}

static int depthForFormat(QImage::Format format)
{
    switch (format) {
    case QImage::Format_RGB32:  return 32;
    case QImage::Format_ARGB32: return 32;
    case QImage::Format_RGB16:  return 16;
    case QImage::Format_RGB666: return 24;
    case QImage::Format_RGB555: return 16;
    case QImage::Format_RGB888: return 24;
    case QImage::Format_RGB444: return 16;
    default:
        Q_ASSERT_X(false, "EGLNullWSScreen", "Unknown format");
        return -1;
    }
}

static void printHelp()
{
    QByteArray formatsBuf;
    QTextStream(&formatsBuf) << QStringList(formatDictionary().keys()).join(", ");
    qWarning(
        "%s: Valid options are:\n"
        "size=WIDTHxHEIGHT   Screen size reported by this driver\n"
        "format=FORMAT       Screen format, where FORMAT is one of the following:\n"
        "                      %s\n",
        PluginName,
        formatsBuf.constData());
}

bool EGLNullWSScreen::connect(const QString &displaySpec)
{
    const QStringList args = displaySpec.section(':', 1).split(':', QString::SkipEmptyParts);
    Q_FOREACH(const QString arg, args) {
        const QString optionName = arg.section('=', 0, 0);
        const QString optionArg = arg.section('=', 1);
        if (optionName == QLatin1String("size")) {
            w = optionArg.section('x', 0, 0).toInt();
            h = optionArg.section('x', 1, 1).toInt();
        } else if (optionName == QLatin1String("format")) {
            if (formatDictionary().contains(optionArg))
                setPixelFormat(formatDictionary().value(optionArg));
            else
                printHelp();
        } else {
            printHelp();
        }
    }

    if (w == 0 || h == 0) {
        w = 640;
        h = 480;
        qWarning("%s: Using default screen size %dx%d", PluginName, w, h);
    }
    dw = w;
    dh = h;

    if (pixelFormat() == QImage::Format_Invalid) {
        qWarning("%s: Using default screen format argb32", PluginName);
        setPixelFormat(QImage::Format_ARGB32);
    }
    d = depthForFormat(pixelFormat());

    static const int Dpi = 120;
    static const qreal ScalingFactor = static_cast<qreal>(25.4) / Dpi;
    physWidth = qRound(dw * ScalingFactor);
    physHeight = qRound(dh * ScalingFactor);

    return true;
}

void EGLNullWSScreen::disconnect() {}

void EGLNullWSScreen::shutdownDevice() {}

void EGLNullWSScreen::setMode(int /*width*/, int /*height*/, int /*depth*/) {}

void EGLNullWSScreen::blank(bool /*on*/) {}

void EGLNullWSScreen::exposeRegion(QRegion /*r*/, int /*changing*/) {}

QWSWindowSurface* EGLNullWSScreen::createSurface(QWidget *widget) const
{
    if (qobject_cast<QGLWidget*>(widget)) {
        return new EGLNullWSWindowSurface(widget);
    } else {
        qWarning("%s: Creating non-GL surface", PluginName);
        return QScreen::createSurface(widget);
    }
}

QWSWindowSurface* EGLNullWSScreen::createSurface(const QString &key) const
{
    if (key == QLatin1String("eglnullws")) {
        return new EGLNullWSWindowSurface;
    } else {
        qWarning("%s: Creating non-GL surface", PluginName);
        return QScreen::createSurface(key);
    }
}