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:
parent
9d349ac646
commit
9685080bd4
15 changed files with 869 additions and 1 deletions
|
@ -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; }
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue