| 272 | struct Row |
| 273 | { |
| 274 | Row(unsigned int rowTop, unsigned int rowHeight) : width(0), top(rowTop), height(rowHeight) {} |
| 275 | |
| 276 | unsigned int width; ///< Current width of the row |
| 277 | unsigned int top; ///< Y position of the row into the texture |
nothing calls this directly
no outgoing calls
no test coverage detected