summaryrefslogtreecommitdiffstats
path: root/examples/opengl/hellowindow/main.cpp
blob: af5943adf4609547579f083118e06cb9c99cebf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#include <QGuiApplication>

#include "hellowindow.h"

int main(int argc, char **argv)
{
    QGuiApplication app(argc, argv);

    Renderer renderer;

    HelloWindow windowA(&renderer);
    windowA.setVisible(true);

    HelloWindow windowB(&renderer);
    windowB.setVisible(true);

    return app.exec();
}