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

PixelPaint: Add a general-purpose parallel image processing pipeline

The ImageProcessor singleton is intended to be used by all sorts of
image processing which might take some time to complete; or other
background actions. We're not using BackgroundTask here because this
system is specifically designed to work with task queues and PixelPaint
interaction; e.g. it provides common image processing tasks such as
filter application.
This commit is contained in:
kleines Filmröllchen 2022-08-13 13:05:03 +02:00 committed by Sam Atkins
parent 9483adee46
commit ade868aa56
3 changed files with 146 additions and 0 deletions

View file

@ -40,6 +40,7 @@ set(SOURCES
IconBag.cpp
Image.cpp
ImageEditor.cpp
ImageProcessor.cpp
Layer.cpp
LayerListWidget.cpp
LayerPropertiesWidget.cpp