| 124 | void ui_DrawSetAlpha(uint8_t alpha) { m_UIDrawAlpha = alpha; } |
| 125 | |
| 126 | void ui_DrawLine(ddgr_color color, int x1, int y1, int x2, int y2) { |
| 127 | if (color == TRANSPARENT_COLOR32) |
| 128 | return; |
| 129 | |
| 130 | rend_SetFlatColor(color); |
| 131 | rend_DrawLine(x1, y1, x2, y2); |
| 132 | } |
| 133 | |
| 134 | void ui_DrawBox(ddgr_color color, int l, int t, int r, int b) { |
| 135 | if (color == TRANSPARENT_COLOR32) |
no test coverage detected