// Copyright (C) 2019 The Qt Company Ltd. // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only #include #include #include #include #include QListlookupNodeByClassName(Qt3DCore::QNode *root, const QString &className) { auto children = root->childNodes(); QList childrenList; for (auto i : children) { if (i->metaObject()->className() == className) childrenList << i; else childrenList << lookupNodeByClassName(i, className); } return childrenList; } class tst_qtext2dentity : public QObject { Q_OBJECT private slots: void checkChangeArbiter(); }; void tst_qtext2dentity::checkChangeArbiter() { QSKIP("Skipping for now as creating windows with RHI on cross compiled targets seems to fail"); // GIVEN Qt3DExtras::Quick::Qt3DQuickWindow view; view.setSource(QUrl("qrc:/qtext2dentity.qml")); view.show(); QCoreApplication::processEvents(); // THEN auto rootEntity = view.engine()->aspectEngine()->rootEntity(); QVERIFY(rootEntity != nullptr); auto atlases = lookupNodeByClassName(rootEntity.data(), "Qt3DExtras::QTextureAtlas"); QVERIFY(atlases.size() == 1); auto atlas = atlases[0]; QVERIFY(Qt3DCore::QNodePrivate::get(atlas)->m_changeArbiter); } QTEST_MAIN(tst_qtext2dentity) #include "tst_qtext2dentity.moc"