就业培训     下载中心     Wiki     联络 登录   注册

Log
  1. 首页
  2. Qt 6.5.1
  3. Qt Quick Effect Maker
  4. Wiggly
  5. Porting Shadertoy effects to Qt Quick Effect Maker

    Wiggly

    // Copyright (C) 2023 The Qt Company Ltd.
    // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR BSD-3-Clause
    #include <QGuiApplication>
    #include <QQmlApplicationEngine>
    int main(int argc, char *argv[])
    {
        QGuiApplication app(argc, argv);
        QQmlApplicationEngine engine;
        const QUrl url(u"qrc:/wiggly/main.qml"_qs);
        QObject::connect(&engine, &QQmlApplicationEngine::objectCreated,
                         &app, [url](QObject *obj, const QUrl &objUrl) {
            if (!obj && url == objUrl)
                QCoreApplication::exit(-1);
        }, Qt::QueuedConnection);
        engine.load(url);
        return app.exec();
    }
    							
    1. 首页
    2. Qt 6.5.1
    3. Porting Shadertoy effects to Qt Quick Effect Maker

版权所有  © 2014-2025 乐数软件    

工业和信息化部: 粤ICP备14079481号-1