summaryrefslogtreecommitdiffstats
path: root/examples/wayland/server-buffer/compositor/main.cpp
blob: 3c33620c5a14626c1a5991125f7188706ea115dc (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
// Copyright (C) 2017 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause

#include <QtCore/QUrl>
#include <QtCore/QDebug>
#include <QtGui/QGuiApplication>
#include <QtQml/QQmlApplicationEngine>

#include <QtQml/qqml.h>
#include <QtQml/QQmlEngine>

#include "sharebufferextension.h"

static void registerTypes()
{
    qmlRegisterType<ShareBufferExtensionQuickExtension>("io.qt.examples.sharebufferextension", 1, 0, "ShareBufferExtension");
}

int main(int argc, char *argv[])
{
    // Make sure there is a valid OpenGL context in the main thread
    qputenv("QSG_RENDER_LOOP", "basic");

    QGuiApplication app(argc, argv);
    registerTypes();
    QQmlApplicationEngine appEngine(QUrl("qrc:///qml/main.qml"));

    return app.exec();
}