| Line | Source | Count |
| 1 | | - |
| 2 | | - |
| 3 | | - |
| 4 | class __attribute__((visibility("default"))) QSGSimpleRectNode : public QSGGeometryNode | - |
| 5 | { | - |
| 6 | public: | - |
| 7 | QSGSimpleRectNode(const QRectF &rect, const QColor &color); | - |
| 8 | QSGSimpleRectNode(); | - |
| 9 | | - |
| 10 | void setRect(const QRectF &rect); | - |
| 11 | inline void setRect(qreal x, qreal y, qreal w, qreal h) { setRect(QRectF(x, y, w, h)); }executed 200002 times by 2 tests: end of blockExecuted by:- tst_nodestest
- tst_scenegraph
| 200002 |
| 12 | QRectF rect() const; | - |
| 13 | | - |
| 14 | void setColor(const QColor &color); | - |
| 15 | QColor color() const; | - |
| 16 | | - |
| 17 | private: | - |
| 18 | QSGFlatColorMaterial m_material; | - |
| 19 | QSGGeometry m_geometry; | - |
| 20 | void *reserved; | - |
| 21 | }; | - |
| 22 | | - |
| 23 | | - |
| | |