mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +00:00
b193fe658d
We use instances of `Gfx::Bitmap` to move pixel data all the way from raw image bytes up to the Skia renderer. A vital piece of information for correct blending of bitmaps is the alpha type, i.e. are we dealing with premultiplied or unpremultiplied color values? Premultiplied means that the RGB colors have been multiplied with the associated alpha value, i.e. RGB(255, 255, 255) with an alpha of 2% is stored as RGBA(5, 5, 5, 2%). Unpremultiplied means that the original RGB colors are stored, regardless of the alpha value. I.e. RGB(255, 255, 255) with an alpha of 2% is stored as RGBA(255, 255, 255, 2%). It is important to know how the color data is stored in a `Gfx::Bitmap`, because correct blending depends on knowing the alpha type: premultiplied blending uses `S + (1 - A) * D`, while unpremultiplied blending uses `A * S + (1 - A) * D`. This adds the alpha type information to `Gfx::Bitmap` across the board. It isn't used anywhere yet. |
||
---|---|---|
.. | ||
Android | ||
AppKit | ||
cmake | ||
Icons | ||
ImageDecoder | ||
Qt | ||
RequestServer | ||
WebContent | ||
WebDriver | ||
WebWorker | ||
.gitignore | ||
CMakeLists.txt | ||
default.nix | ||
DefaultSettings.h | ||
FontPlugin.cpp | ||
FontPlugin.h | ||
HelperProcess.cpp | ||
HelperProcess.h | ||
ImageCodecPlugin.cpp | ||
ImageCodecPlugin.h | ||
Info.plist | ||
MachPortServer.cpp | ||
MachPortServer.h | ||
Utilities.cpp | ||
Utilities.h |