| 653 | // TODO: Add ImageDrawTriangle() |
| 654 | |
| 655 | void Draw(const ::Image& src, ::Rectangle srcRec, ::Rectangle dstRec, ::Color tint = {255, 255, 255, 255}) { |
| 656 | ::ImageDraw(this, src, srcRec, dstRec, tint); |
| 657 | } |
| 658 | |
| 659 | void DrawText(const char* text, ::Vector2 position, int fontSize, ::Color color = {255, 255, 255, 255}) { |
| 660 | ::ImageDrawText(this, text, static_cast<int>(position.x), static_cast<int>(position.y), fontSize, color); |
nothing calls this directly
no outgoing calls
no test coverage detected