summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/Font.h
AgeCommit message (Collapse)Author
2021-05-29Everywhere: Use s.unverwerth@serenityos.org :^)Stephan Unverwerth
2021-04-22Everything: Move to SPDX license identifiers in all files.Brian Gianforcaro
SPDX License Identifiers are a more compact / standardized way of representing file license information. See: https://spdx.dev/resources/use/#identifiers This was done with the `ambr` search and replace tool. ambr --no-parent-ignore --key-from-file --rep-from-file key.txt rep.txt *
2021-04-18LibGfx: Use size_t instead of int for glyph countIdan Horowitz
The count is always non-negative
2021-02-15LibGfx: draw_glyph_or_emoji fix check for available glyphStephan Unverwerth
This would cause question marks to be rendered when a ttf with fewer glyphs than the value of the code_point was used.
2021-02-15LibGfx: Remove static load_from_file() from abstract Font classStephan Unverwerth
2021-02-15LibGfx: Generalize glyph placement in PainterStephan Unverwerth
2021-02-15LibGfx+LibTTF: Allow Painter to draw TTF glyphsStephan Unverwerth
2021-02-15LibGfx: Insert pixel and ttf fonts into Typeface structureStephan Unverwerth
This adds a new structure 'Typeface' to the FontDatabase that represents all fonts of the same family and variant. It can contain a list of BitmapFonts with varying size but of the same family and weight or a pointer to a single TTF font for all sizes of this Typeface.
2021-01-12Libraries: Move to Userland/Libraries/Andreas Kling