| 58 | } |
| 59 | |
| 60 | void DrawRect(rect_t rect, rgba_colour_t colour, surface_t* surface, rect_t mask){ |
| 61 | DrawRect(rect.pos.x, rect.pos.y, rect.size.x, rect.size.y, colour, surface, mask); |
| 62 | } |
| 63 | |
| 64 | void DrawRect(int x, int y, int width, int height, uint8_t r, uint8_t g, uint8_t b, surface_t* surface, rect_t mask){ |
| 65 | if(x < 0){ |
no test coverage detected