| 749 | } |
| 750 | |
| 751 | void Bitmap::Fill(const Color &color) { |
| 752 | pixman_color_t pcolor = PixmanColor(color); |
| 753 | |
| 754 | pixman_box32_t box = { 0, 0, width(), height() }; |
| 755 | |
| 756 | pixman_image_fill_boxes(PIXMAN_OP_SRC, bitmap.get(), &pcolor, 1, &box); |
| 757 | } |
| 758 | |
| 759 | void Bitmap::FillRect(Rect const& dst_rect, const Color &color) { |
| 760 | pixman_color_t pcolor = PixmanColor(color); |
no test coverage detected