| Absolute File Name: | /home/opencoverage/opencoverage/guest-scripts/qtdeclarative/src/qtdeclarative/src/quick/scenegraph/coreapi/qsggeometry_p.h |
| Switch to Source code | Preprocessed file |
| Line | Source | Count |
|---|---|---|
| 1 | - | |
| 2 | - | |
| 3 | class QSGGeometryData | - |
| 4 | { | - |
| 5 | public: | - |
| 6 | virtual ~QSGGeometryData() {} | - |
| 7 | - | |
| 8 | static inline QSGGeometryData *data(const QSGGeometry *g) { | - |
| 9 | return never executed: g->m_server_data;return g->m_server_data;never executed: return g->m_server_data; | 0 |
| 10 | } | - |
| 11 | - | |
| 12 | static inline void install(const QSGGeometry *g, QSGGeometryData *data) { | - |
| 13 | ((!g->m_server_data) ? static_cast<void>(0) : qt_assert("!g->m_server_data", __FILE__, 68)); | - |
| 14 | const_cast<QSGGeometry *>(g)->m_server_data = data; | - |
| 15 | } never executed: end of block | 0 |
| 16 | - | |
| 17 | static bool inline hasDirtyVertexData(const QSGGeometry *g) { return never executed: g->m_dirty_vertex_data;return g->m_dirty_vertex_data;never executed: }return g->m_dirty_vertex_data; | 0 |
| 18 | static void inline clearDirtyVertexData(const QSGGeometry *g) { const_cast<QSGGeometry *>(g)->m_dirty_vertex_data = false; } never executed: end of block | 0 |
| 19 | - | |
| 20 | static bool inline hasDirtyIndexData(const QSGGeometry *g) { return never executed: g->m_dirty_vertex_data;return g->m_dirty_vertex_data;never executed: }return g->m_dirty_vertex_data; | 0 |
| 21 | static void inline clearDirtyIndexData(const QSGGeometry *g) { const_cast<QSGGeometry *>(g)->m_dirty_index_data = false; } never executed: end of block | 0 |
| 22 | - | |
| 23 | }; | - |
| 24 | - | |
| 25 | - | |
| Switch to Source code | Preprocessed file |