1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:47:45 +00:00

SharedGraphics: Make Painter::fill_rect() respect the current DrawOp.

This commit is contained in:
Andreas Kling 2019-02-01 05:23:05 +01:00
parent 95c3442d59
commit b7967d1292
2 changed files with 25 additions and 0 deletions

View file

@ -47,6 +47,7 @@ public:
private:
void set_pixel_with_draw_op(dword& pixel, const Color&);
void fill_rect_with_draw_op(const Rect&, Color);
const Font* m_font;
Point m_translation;