ladybird/Userland/Libraries/LibGfx
Nico Weber d43b306814 LibGfx: Give ICC::TagType a virtual destructor
ICC::Profile deletes these objects via base class pointers, so this
is needed that destructors in the subclasses get called.

(Found by asan on CI when adding test coverage.)
2023-02-01 19:19:30 +01:00
..
Filters LibGfx: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
Font LibGfx: Make glyph ID lookup faster with a cache 2023-01-31 17:14:57 +01:00
ICC LibGfx: Give ICC::TagType a virtual destructor 2023-02-01 19:19:30 +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: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
AntiAliasingPainter.h LibGfx: Add small convenience functions for Lines and AA Painter 2023-01-26 10:37:26 +00:00
Bitmap.cpp AK: Deprecate the old AK::Stream 2023-01-29 19:16:44 -07:00
Bitmap.h LibGfx: Remove try_ prefix from bitmap creation functions 2023-01-26 20:24:37 +00:00
BitmapMixer.cpp
BitmapMixer.h
BMPLoader.cpp LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
BMPLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
BMPWriter.cpp
BMPWriter.h
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: Split ICC/Profile.{h,cpp} into several files 2023-01-28 00:27:07 +00:00
Color.cpp LibIPC+Everywhere: Change IPC::encode's return type to ErrorOr 2023-01-04 11:49:15 +01:00
Color.h Userland: Add missing Math.h and IntegralMath.h header includes 2023-01-19 11:29:48 +00: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 AK: Deprecate the old AK::Stream 2023-01-29 19:16:44 -07:00
DDSLoader.h LibGfx: Remove declarations for non-existent methods 2023-01-27 20:33:18 +00:00
DisjointRectSet.h
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 AK: Move memory streams from LibCore 2023-01-29 19:16:44 -07:00
GIFLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
GradientPainting.cpp LibGfx: Fix constructor initialisation style in GradientPainting 2023-01-29 13:49:35 +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 AK: Deprecate the old AK::Stream 2023-01-29 19:16:44 -07:00
ICOLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
ImageDecoder.cpp LibGfx: Re-structure the whole initialization pattern for image decoders 2023-01-20 15:13:31 +00:00
ImageDecoder.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00:00
JPGLoader.cpp AK: Move memory streams from LibCore 2023-01-29 19:16:44 -07:00
JPGLoader.h LibGfx: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00: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+Tests: Remove code unnecessary after 9e7c16d0a4 2023-02-01 08:56:56 -05:00
Painter.h LibGfx: Stop passing color stop spans by const reference 2023-01-29 13:49:35 +00:00
PaintStyle.h LibGfx: Implement paint styles required for HTML canvas gradients 2023-01-22 18:15:52 +01:00
Palette.cpp AK+Everywhere: Rename String to DeprecatedString 2022-12-06 08:54:33 +01:00
Palette.h LibGUI+LibGfx: Add Tray ColorRole helpers to Palette 2023-01-29 18:27:34 +00:00
Path.cpp Meta+Userland: Pass Gfx::FloatPoint by value 2022-12-07 11:48:27 +01:00
Path.h Meta+Userland: Pass Gfx::FloatPoint by value 2022-12-07 11:48:27 +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 AK: Move memory streams from LibCore 2023-01-29 19:16:44 -07:00
QOILoader.h AK: Move Stream and SeekableStream from LibCore 2023-01-29 19:16:44 -07:00
QOIWriter.cpp AK: Deprecate the old AK::Stream 2023-01-29 19:16:44 -07:00
QOIWriter.h
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: Add a method to ImageDecoderPlugin for reading ICC data 2023-01-27 17:26:48 +00: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