mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-01 10:05:55 +00:00
24 lines
662 B
C++
24 lines
662 B
C++
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
// "Calling QSurfaceFormat::setDefaultFormat() before constructing the
|
|
// QApplication instance is mandatory on some platforms ... when an
|
|
// OpenGL core profile context is requested."
|
|
QSurfaceFormat format;
|
|
format.setVersion(3, 2);
|
|
format.setProfile(QSurfaceFormat::CoreProfile);
|
|
format.setDepthBufferSize(0);
|
|
format.setStencilBufferSize(0);
|
|
QSurfaceFormat::setDefaultFormat(format);
|
|
|
|
QApplication a(argc, argv);
|
|
MainWindow *const w = (argc > 1) ? new MainWindow(argv[1]) : new MainWindow();
|
|
w->setAttribute(Qt::WA_DeleteOnClose);
|
|
w->show();
|
|
|
|
return a.exec();
|
|
}
|