* Draws a filled rectangle on the surface. * @param rect Pointer to Rect. * @param color Color of the rectangle. */
| 544 | * @param color Color of the rectangle. |
| 545 | */ |
| 546 | void Surface::drawRect(SDL_Rect *rect, Uint8 color) |
| 547 | { |
| 548 | SDL_FillRect(_surface, rect, color); |
| 549 | } |
| 550 | |
| 551 | /** |
| 552 | * Draws a filled rectangle on the surface. |
no outgoing calls
no test coverage detected