Codechange: Return read-only span instead of vector from layout run functions.
This commit is contained in:
committed by
Peter Nelson
parent
6bf214af6e
commit
bbbf2b5282
@@ -71,9 +71,9 @@ public:
|
||||
public:
|
||||
ICUVisualRun(const ICURun &run, int x);
|
||||
|
||||
const std::vector<GlyphID> &GetGlyphs() const override { return this->glyphs; }
|
||||
const std::vector<Point> &GetPositions() const override { return this->positions; }
|
||||
const std::vector<int> &GetGlyphToCharMap() const override { return this->glyph_to_char; }
|
||||
std::span<const GlyphID> GetGlyphs() const override { return this->glyphs; }
|
||||
std::span<const Point> GetPositions() const override { return this->positions; }
|
||||
std::span<const int> GetGlyphToCharMap() const override { return this->glyph_to_char; }
|
||||
|
||||
const Font *GetFont() const override { return this->font; }
|
||||
int GetLeading() const override { return this->font->fc->GetHeight(); }
|
||||
|
||||
Reference in New Issue
Block a user