| 688 | } |
| 689 | |
| 690 | void imguiDrawRect(float x, float y, float w, float h, unsigned int color) |
| 691 | { |
| 692 | addGfxCmdRect(x, y, w, h, color); |
| 693 | } |
| 694 | |
| 695 | void imguiDrawRoundedRect(float x, float y, float w, float h, float r, unsigned int color) |
| 696 | { |
nothing calls this directly
no test coverage detected