mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 02:59:45 +00:00
LibGfx: Added dirty and raw cyrillic support for bitmap fonts.
This is a very quick and diry hack to implement support for cyrillic bitmap fonts.
This commit is contained in:
parent
2469e07784
commit
323b7021bc
Notes:
sideshowbarker
2024-07-18 20:38:22 +09:00
Author: https://github.com/DmitriiTrifonov 🔰
Commit: 323b7021bc
Pull-request: https://github.com/SerenityOS/serenity/pull/6194
Issue: https://github.com/SerenityOS/serenity/issues/6192
2 changed files with 9 additions and 1 deletions
|
@ -38,7 +38,10 @@ namespace Gfx {
|
|||
|
||||
enum FontTypes {
|
||||
Default = 0,
|
||||
LatinExtendedA = 1
|
||||
LatinExtendedA = 1,
|
||||
// There are many blocks between LatinExtendedA and Cyrrilic that has to be added later.
|
||||
// Cyrrilic has to be switched to another number
|
||||
Cyrillic = 2
|
||||
};
|
||||
|
||||
class BitmapFont : public Font {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue