| 403 | } |
| 404 | |
| 405 | QSGNode *QuickSceneGraphModel::sgNodeForItem(QQuickItem *item) const |
| 406 | { |
| 407 | auto it = m_itemItemNodeMap.find(item); |
| 408 | if (it != m_itemItemNodeMap.end()) { |
| 409 | return it->second; |
| 410 | } |
| 411 | return nullptr; |
| 412 | } |
| 413 | |
| 414 | QQuickItem *QuickSceneGraphModel::itemForSgNode(QSGNode *node) const |
| 415 | { |