Home
last modified time | relevance | path

Searched refs:rootEntity (Results 1 – 25 of 43) sorted by relevance

12

/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qt3d/examples/qt3d/scene3d/
H A Dmain.qml104 id: rootEntity
127 …Text { text: "GL Version: " + rootEntity.capabilities.majorVersion + "." + rootEntity.capabilities…
132 model: rootEntity.capabilities.extensions
139 … + rootEntity.capabilities.maxTextureSize + "\nMax Texture Units: " + rootEntity.capabilities.maxT…
141 … UBO Size: " + rootEntity.capabilities.maxUBOSize + "\n Max UBO Bindings: " + rootEntity.capabili…
143 …BO Size: " + rootEntity.capabilities.maxSSBOSize + "\n Max SSBO Bindings: " + rootEntity.capabili…
145 …Text { text: " Max Image Units: " + rootEntity.capabilities.maxImageUnits; visible: rootEntity.ca…
147rootEntity.capabilities.maxWorkGroupSizeX + ", " + rootEntity.capabilities.maxWorkGroupSizeY + ", …
148rootEntity.capabilities.maxWorkGroupCountX + ", " + rootEntity.capabilities.maxWorkGroupCountY + "…
149 …Text { text: " Max Invocations: " + rootEntity.capabilities.maxComputeInvocations; visible: rootE…
[all …]
/dports/devel/gammaray/GammaRay-2.11.3/examples/qt3d-geometry/
H A Dqt3d-geometry.cpp49 auto rootEntity = new Qt3DCore::QEntity; in main() local
50 rootEntity->setObjectName("rootEntity"); in main()
52 auto cylinderEntity = new Qt3DCore::QEntity(rootEntity); in main()
57 auto material = new Qt3DExtras::QPhongMaterial(rootEntity); in main()
84 auto camController = new Qt3DExtras::QOrbitCameraController(rootEntity); in main()
89 view.setRootEntity(rootEntity); in main()
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qt3d/examples/qt3d/simple-cpp/
H A Dmain.cpp77 Qt3DCore::QEntity *rootEntity = new Qt3DCore::QEntity; in createScene() local
80 Qt3DRender::QMaterial *material = new Qt3DExtras::QPhongMaterial(rootEntity); in createScene()
83 Qt3DCore::QEntity *torusEntity = new Qt3DCore::QEntity(rootEntity); in createScene()
99 Qt3DCore::QEntity *sphereEntity = new Qt3DCore::QEntity(rootEntity); in createScene()
122 return rootEntity; in createScene()
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/Qt3DExtras/
H A Dqt3dextras_test.py104 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
109 self.setRootEntity(self.rootEntity)
113 self.rootEntity = Qt3DCore.QEntity()
116 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
119 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
135 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/Qt3DExtras/
H A Dqt3dextras_test.py104 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
109 self.setRootEntity(self.rootEntity)
113 self.rootEntity = Qt3DCore.QEntity()
116 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
119 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
135 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/3d/
H A Dsimple3d.py105 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
110 self.setRootEntity(self.rootEntity)
114 self.rootEntity = Qt3DCore.QEntity()
117 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
120 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
136 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/3d/
H A Dsimple3d.py105 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
110 self.setRootEntity(self.rootEntity)
114 self.rootEntity = Qt3DCore.QEntity()
117 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
120 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
136 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/examples/3d/
H A Dsimple3d.py105 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
110 self.setRootEntity(self.rootEntity)
114 self.rootEntity = Qt3DCore.QEntity()
117 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
120 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
136 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/sources/pyside2/tests/Qt3DExtras/
H A Dqt3dextras_test.py104 self.camController = Qt3DExtras.QOrbitCameraController(self.rootEntity)
109 self.setRootEntity(self.rootEntity)
113 self.rootEntity = Qt3DCore.QEntity()
116 self.material = Qt3DExtras.QPhongMaterial(self.rootEntity)
119 self.torusEntity = Qt3DCore.QEntity(self.rootEntity)
135 self.sphereEntity = Qt3DCore.QEntity(self.rootEntity)
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qt3d/examples/qt3d/basicshapes-cpp/
H A Dmain.cpp105 Qt3DCore::QEntity *rootEntity = new Qt3DCore::QEntity(); in main() local
115 Qt3DCore::QEntity *lightEntity = new Qt3DCore::QEntity(rootEntity); in main()
125 …stPersonCameraController *camController = new Qt3DExtras::QFirstPersonCameraController(rootEntity); in main()
129 SceneModifier *modifier = new SceneModifier(rootEntity); in main()
132 view->setRootEntity(rootEntity); in main()
/dports/devel/boost_build/build-29baa79/test/qt5/
H A Dqt3drender.cpp19 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
20 Qt3DRender::QMaterial material(&rootEntity); in BOOST_AUTO_TEST_CASE()
H A Dqt3dinput.cpp21 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
/dports/devel/boost-python-libs/boost_1_72_0/tools/build/test/qt5/
H A Dqt3drender.cpp19 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
20 Qt3DRender::QMaterial material(&rootEntity); in BOOST_AUTO_TEST_CASE()
H A Dqt3dinput.cpp21 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
/dports/devel/boost-docs/boost_1_72_0/tools/build/test/qt5/
H A Dqt3drender.cpp19 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
20 Qt3DRender::QMaterial material(&rootEntity); in BOOST_AUTO_TEST_CASE()
H A Dqt3dinput.cpp21 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
/dports/devel/boost-libs/boost_1_72_0/tools/build/test/qt5/
H A Dqt3drender.cpp19 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
20 Qt3DRender::QMaterial material(&rootEntity); in BOOST_AUTO_TEST_CASE()
H A Dqt3dinput.cpp21 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
/dports/devel/hyperscan/boost_1_75_0/tools/build/test/qt5/
H A Dqt3drender.cpp19 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
20 Qt3DRender::QMaterial material(&rootEntity); in BOOST_AUTO_TEST_CASE()
H A Dqt3dinput.cpp21 Qt3DCore::QEntity rootEntity; in BOOST_AUTO_TEST_CASE() local
/dports/devel/gammaray/GammaRay-2.11.3/plugins/qt3dinspector/geometryextension/
H A Dqt3dgeometrytab.cpp203 auto rootEntity = new Qt3DCore::QEntity; in eventFilter() local
221 rootEntity->addComponent(renderSettings); in eventFilter()
223 auto skyboxEntity = new Qt3DCore::QEntity(rootEntity); in eventFilter()
233 skyboxEntity->addComponent(createSkyboxMaterial(rootEntity)); in eventFilter()
236 auto geometryEntity = new Qt3DCore::QEntity(rootEntity); in eventFilter()
239 geometryEntity->addComponent(createMaterial(rootEntity)); in eventFilter()
248 auto es2lineEntity = new Qt3DCore::QEntity(rootEntity); in eventFilter()
264 auto lightEntity = new Qt3DCore::QEntity(rootEntity); in eventFilter()
277 rootEntity->addComponent(inputSettings); in eventFilter()
279 auto camController = new CameraController(rootEntity); in eventFilter()
[all …]
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/render/frontend/
H A Dqrenderaspect.cpp395 …Render::Entity *rootEntity = m_nodeManagers->lookupResource<Render::Entity, Render::EntityManager>… in onEngineStartup() local
396 Q_ASSERT(rootEntity); in onEngineStartup()
397 m_renderer->setSceneRoot(rootEntity); in onEngineStartup()
399 m_worldTransformJob->setRoot(rootEntity); in onEngineStartup()
400 m_expandBoundingVolumeJob->setRoot(rootEntity); in onEngineStartup()
401 m_calculateBoundingVolumeJob->setRoot(rootEntity); in onEngineStartup()
402 m_updateLevelOfDetailJob->setRoot(rootEntity); in onEngineStartup()
403 m_updateSkinningPaletteJob->setRoot(rootEntity); in onEngineStartup()
404 m_updateTreeEnabledJob->setRoot(rootEntity); in onEngineStartup()
405 m_pickBoundingVolumeJob->setRoot(rootEntity); in onEngineStartup()
[all …]
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/core/nodes/
H A Dqnodevisitor_p.h116 QEntity* rootEntity = qobject_cast<QEntity *>(rootNode_); in startTraversing() local
118 if (rootEntity) in startTraversing()
119 visitEntity(rootEntity, fN, fE); in startTraversing()
/dports/devel/gammaray/GammaRay-2.11.3/plugins/qt3dinspector/
H A D3dinspector.cpp163 auto rootEntity = engine->rootEntity(); in selectEngine() local
164 if (!rootEntity) in selectEngine()
167 foreach (auto component, rootEntity->components()) { in selectEngine()
H A Dqt3dentitytreemodel.cpp53 populateFromEntity(engine->rootEntity().data()); in setEngine()
111 if (!m_engine || !m_engine->rootEntity()) in rowCount()
175 if (entity == engine->rootEntity()) in isEngineForEntity()

12