ladybird/Userland/Libraries/LibGfx
Lucas CHOLLET bae37676c2 LibGfx: Prepare the decoder to handle multiples scans
This means that we should read markers in a loop instead of quiting on
the first scan. This is useless for now as `SOF0` frames only have one
scan, but this is a step forward `SOF2` support.
2023-02-22 09:22:45 +01:00
..
Filters LibGfx: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
Font LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
ICC LibGfx: Implement serialization of Lut16TagData and Lut8TagData 2023-02-19 23:46:36 +01:00
AffineTransform.cpp Meta+Userland: Pass Gfx::IntSize by value 2022-12-07 11:48:27 +01:00
AffineTransform.h Meta+Userland: Pass Gfx::IntSize by value 2022-12-07 11:48:27 +01:00
AntiAliasingPainter.cpp LibGfx: Fix a slight mistake in AA ellipse error calculation 2023-02-19 18:40:15 +01:00
AntiAliasingPainter.h LibGfx+LibWeb: Store radii as FloatSize rather than FloatPoint 2023-02-10 23:33:16 +01:00
Bitmap.cpp LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
Bitmap.h LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
BitmapMixer.cpp
BitmapMixer.h
BMPLoader.cpp LibGfx: Minorly simplify BMPLoader's decode_bmp_dib() 2023-02-18 01:45:12 +01:00
BMPLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
BMPWriter.cpp LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
BMPWriter.h LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
CharacterBitmap.h
ClassicStylePainter.cpp
ClassicStylePainter.h
ClassicWindowTheme.cpp LibGfx: Round menu font size up when calculating menubar height 2023-01-06 12:02:21 +01:00
ClassicWindowTheme.h LibGfx: Make ClassicWindowTheme menubar heights respect the font size 2023-01-03 15:25:02 +01:00
CMakeLists.txt LibGfx: Rename JPGLoader to JPEGLoader 2023-02-18 23:56:24 +01:00
Color.cpp LibGfx: Move Color::mixed_with() inline 2023-02-18 17:10:04 +01:00
Color.h LibGfx: Add ALWAYS_INLINE to Color::mixed_with()/interpolate() 2023-02-18 17:10:04 +01:00
CursorParams.cpp Meta+Userland: Pass Gfx::IntPoint by value 2022-12-07 11:48:27 +01:00
CursorParams.h Meta+Userland: Pass Gfx::IntPoint by value 2022-12-07 11:48:27 +01:00
DDSLoader.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
DDSLoader.h LibGfx: Port DDSLoader to AK::Stream 2023-02-08 17:55:36 +00:00
DisjointRectSet.h LibGfx+Everywhere: Make DisjointRectSet work for non-int Rects 2022-10-27 13:06:33 +02:00
FillPathImplementation.h LibGfx: Update fill_path() to support taking a PaintStyle 2023-01-22 18:15:52 +01:00
Forward.h LibGfx: Add paint styles and allow gradients to be used as them 2023-01-22 18:15:52 +01:00
Gamma.h
GIFLoader.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
GIFLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
GradientPainting.cpp Everywhere: Use ReadonlySpan<T> instead of Span<T const> 2023-02-08 19:15:45 +00:00
Gradients.h LibWeb+LibGfx: Migrate (most of) the CSS gradient painting to LibGfx 2023-01-10 10:25:58 +01:00
ICOLoader.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
ICOLoader.h LibGfx: Return ErrorOr<> in ICOLoader internal functions 2023-02-04 18:02:03 -07:00
ImageDecoder.cpp LibGfx: Rename JPGLoader to JPEGLoader 2023-02-18 23:56:24 +01:00
ImageDecoder.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
JPEGLoader.cpp LibGfx: Prepare the decoder to handle multiples scans 2023-02-22 09:22:45 +01:00
JPEGLoader.h LibGfx: Add a spec link for the JPEG decoder 2023-02-19 23:39:59 +01:00
Line.h LibGfx: Add small convenience functions for Lines and AA Painter 2023-01-26 10:37:26 +00:00
Matrix.h Everywhere: Run clang-format 2022-12-03 23:52:23 +00:00
Matrix3x3.h
Matrix4x4.h
Orientation.h
Painter.cpp LibGfx+LibWeb: Store radii as FloatSize rather than FloatPoint 2023-02-10 23:33:16 +01:00
Painter.h LibGfx+LibWeb: Store radii as FloatSize rather than FloatPoint 2023-02-10 23:33:16 +01:00
PaintStyle.h Everywhere: Use ReadonlySpan<T> instead of Span<T const> 2023-02-08 19:15:45 +00:00
Palette.cpp LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
Palette.h LibGfx: Fix const-correctness issues 2023-02-21 00:54:04 +01:00
Path.cpp LibGfx: Make Gfx::Path const-correct internally (segment list) 2023-02-21 00:54:04 +01:00
Path.h LibGfx: Make Gfx::Path const-correct internally (segment list) 2023-02-21 00:54:04 +01:00
PBMLoader.cpp
PBMLoader.h
PGMLoader.cpp
PGMLoader.h
PNGLoader.cpp LibGfx: Make PNGImageDecoderPlugin::icc_data() return data if present 2023-01-28 12:42:19 +01:00
PNGLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
PNGShared.h
PNGWriter.cpp AK: Remove try_ prefix from FixedArray creation functions 2023-01-28 22:41:36 +01:00
PNGWriter.h LibGfx: Propagate errors that occur internally in PNGWriter 2022-12-08 13:01:11 +00:00
Point.cpp LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
Point.h LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
PortableImageLoaderCommon.h LibGfx: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
PortableImageMapLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
PPMLoader.cpp
PPMLoader.h
QOILoader.cpp Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
QOILoader.h Everywhere: Remove the AK:: qualifier from Stream usages 2023-02-13 00:50:07 +00:00
QOIWriter.cpp LibGfx: Move QOIWriter implementation-only things into cpp file 2023-02-15 20:32:08 +01:00
QOIWriter.h LibGfx: Move QOIWriter implementation-only things into cpp file 2023-02-15 20:32:08 +01:00
Quad.h
Rect.cpp LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
Rect.h LibGfx: Make Rect::align_within() correct for TopCenter and BottomCenter 2023-01-09 19:54:26 +01:00
ShareableBitmap.cpp LibGfx: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
ShareableBitmap.h LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
Size.cpp LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
Size.h LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
StandardCursor.h
Streamer.h
StylePainter.cpp
StylePainter.h
SystemTheme.cpp LibGfx: Support color schemes 2022-12-31 04:20:59 -07:00
SystemTheme.h LibGfx: Support color schemes 2022-12-31 04:20:59 -07:00
TextAlignment.h
TextAttributes.h
TextDirection.cpp
TextDirection.h
TextElision.h
TextLayout.cpp LibGfx: Make text painting better at aligning vector fonts vertically 2023-01-06 12:02:21 +01:00
TextLayout.h LibGfx: Make text painting better at aligning vector fonts vertically 2023-01-06 12:02:21 +01:00
TextWrapping.h
TGALoader.cpp LibGfx: Fix sign-compare compile error in TGALoader 2023-02-19 00:37:51 +01:00
TGALoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
Triangle.cpp Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
Triangle.h Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
Vector2.h Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
Vector3.h Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
Vector4.h Everywhere: Rename to_{string => deprecated_string}() where applicable 2022-12-06 08:54:33 +01:00
VectorN.h Everywhere: Remove unused includes of AK/Format.h 2023-01-02 20:27:20 -05:00
WindowTheme.cpp
WindowTheme.h