1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 17:57:35 +00:00

PixelPaint: Add a bunch of spatial filters

This patchset adds a generic convolution matrix spatial filter, and a
few named derivatives such as BoxBlur, Laplacian, Sharpen and
GaussianBlur.
This commit is contained in:
AnotherTest 2020-07-24 09:59:39 +04:30 committed by Andreas Kling
parent 9d349ac646
commit 9685080bd4
15 changed files with 869 additions and 1 deletions

View file

@ -61,6 +61,8 @@ public:
const String& name() const { return m_name; }
void set_name(const String&);
void set_bitmap(Gfx::Bitmap& bitmap) { m_bitmap = bitmap; }
void did_modify_bitmap(Image&);
void set_selected(bool selected) { m_selected = selected; }