mirror of
https://github.com/crystalidea/qt6windows7.git
synced 2024-11-23 20:10:48 +08:00
27 lines
566 B
C++
27 lines
566 B
C++
// Copyright (C) 2022 The Qt Company Ltd.
|
|
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
#include "mainwindow.h"
|
|
|
|
#include <QApplication>
|
|
#include <QSurfaceFormat>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
QApplication a(argc, argv);
|
|
|
|
QSurfaceFormat format;
|
|
format.setDepthBufferSize(24);
|
|
format.setStencilBufferSize(8);
|
|
format.setSamples(16);
|
|
format.setStereo(true);
|
|
QSurfaceFormat::setDefaultFormat(format);
|
|
|
|
MainWindow w;
|
|
w.show();
|
|
return a.exec();
|
|
}
|
|
|
|
|
|
#include "main.moc"
|