- ResizeWindow function to pass engine new window size
- Remove TabBar to leave more space at the bottom of the screen
- ifdef GL_ES in shaders
#include <QGuiApplication>
#include <QQmlApplicationEngine>
#include "hwengine.h"
int main(int argc, char* argv[])
{
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
QGuiApplication app(argc, argv);
QQmlApplicationEngine engine;
HWEngine::exposeToQML();
engine.load(QUrl(QLatin1String("qrc:/main.qml")));
if (engine.rootObjects().isEmpty())
return -1;
return app.exec();
}