| 20 | const size_t TILERECT_COUNT_VERTEX = 16 * VertexQuad::VertexCount; |
| 21 | |
| 22 | TileRect::TileRect() : |
| 23 | mCountVertex(TILERECT_COUNT_VERTEX) |
| 24 | { |
| 25 | mVertexFormat = RenderManager::getInstance().getVertexFormat(); |
| 26 | } |
| 27 | |
| 28 | void TileRect::setVisible(bool _visible) |
| 29 | { |
nothing calls this directly
no test coverage detected