| 125 | void DrawLineStrip(::Vector2* points, int numPoints) const { ::DrawLineStrip(points, numPoints, *this); } |
| 126 | |
| 127 | void DrawText(const char* text, int posX = 0, int posY = 0, int fontSize = 10.0f) const { |
| 128 | ::DrawText(text, posX, posY, fontSize, *this); |
| 129 | } |
| 130 | |
| 131 | void DrawText(const std::string& text, int posX = 0, int posY = 0, int fontSize = 10.0f) const { |
| 132 | ::DrawText(text.c_str(), posX, posY, fontSize, *this); |
nothing calls this directly
no test coverage detected