| 678 | } |
| 679 | |
| 680 | void imguiDrawText(int x, int y, int align, const char* text, unsigned int color) |
| 681 | { |
| 682 | addGfxCmdText(x, y, align, text, color); |
| 683 | } |
| 684 | |
| 685 | void imguiDrawLine(float x0, float y0, float x1, float y1, float r, unsigned int color) |
| 686 | { |
no test coverage detected