| 683 | } |
| 684 | |
| 685 | void imguiDrawLine(float x0, float y0, float x1, float y1, float r, unsigned int color) |
| 686 | { |
| 687 | addGfxCmdLine(x0, y0, x1, y1, r, color); |
| 688 | } |
| 689 | |
| 690 | void imguiDrawRect(float x, float y, float w, float h, unsigned int color) |
| 691 | { |
nothing calls this directly
no test coverage detected