| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class QSGContext; | - |
| 5 | class QSGRenderContext; | - |
| 6 | | - |
| 7 | class QSGEnginePrivate : public QObjectPrivate | - |
| 8 | { | - |
| 9 | inline QSGEngine* q_func() { return static_cast<QSGEngine *>(q_ptr); } inline const QSGEngine* q_func() const { return static_cast<const QSGEngine *>(q_ptr); } friend class QSGEngine; | - |
| 10 | public: | - |
| 11 | static QSGEnginePrivate *get(QSGEngine *engine) { return never executed: return engine->d_func(); engine->d_func();never executed: return engine->d_func(); } | 0 |
| 12 | QSGEnginePrivate(); | - |
| 13 | | - |
| 14 | QScopedPointer<QSGContext> sgContext; | - |
| 15 | QScopedPointer<QSGRenderContext> sgRenderContext; | - |
| 16 | }; | - |
| 17 | | - |
| 18 | | - |
| | |