/* SPDX-FileCopyrightText: 2011 Ivan Cukic SPDX-License-Identifier: GPL-2.0-or-later */ #include "splashapp.h" #include #include #include #include int main(int argc, char **argv) { // read ksplashrc as config file, not ksplashqmlrc QCoreApplication::setApplicationName(QStringLiteral("ksplash")); auto format = QSurfaceFormat::defaultFormat(); format.setOption(QSurfaceFormat::ResetNotification); QSurfaceFormat::setDefaultFormat(format); QQuickWindow::setDefaultAlphaBuffer(true); SplashApp app(argc, argv); return app.exec(); }