OpenTTD Source
20241108-master-g80f628063a
|
Visual run contains data about the bit of text with the same font. More...
Public Member Functions | |
FallbackVisualRun (Font *font, const char32_t *chars, int glyph_count, int char_offset, int x) | |
Create the visual run. More... | |
const Font * | GetFont () const override |
int | GetGlyphCount () const override |
std::span< const GlyphID > | GetGlyphs () const override |
std::span< const Position > | GetPositions () const override |
int | GetLeading () const override |
std::span< const int > | GetGlyphToCharMap () const override |
Private Attributes | |
std::vector< GlyphID > | glyphs |
The glyphs we're drawing. | |
std::vector< Position > | positions |
The positions of the glyphs. | |
std::vector< int > | glyph_to_char |
The char index of the glyphs. | |
Font * | font |
The font used to layout these. | |
Visual run contains data about the bit of text with the same font.
Definition at line 41 of file gfx_layout_fallback.cpp.
FallbackParagraphLayout::FallbackVisualRun::FallbackVisualRun | ( | Font * | font, |
const char32_t * | chars, | ||
int | char_count, | ||
int | char_offset, | ||
int | x | ||
) |
Create the visual run.
font | The font to use for this run. |
chars | The characters to use for this run. |
char_count | The number of characters in this run. |
char_offset | This run's offset from the start of the layout input string. |
x | The initial x position for this run. |
Definition at line 112 of file gfx_layout_fallback.cpp.