diff options
author | Khaled Hosny <khaled@aliftype.com> | 2022-09-07 11:00:26 +0200 |
---|---|---|
committer | خالد حسني <khaled@aliftype.com> | 2022-09-08 03:33:39 +0200 |
commit | ba02639c9c17d75e73fc2eff83e64c116fcdaeb2 (patch) | |
tree | 5084b43abc587202ba351a3b1c941cc921813ad9 /vcl/inc/glyphid.hxx | |
parent | 5aa3f046f934092fbfd7cc92b93d79b4f548cc13 (diff) |
vcl: Make glyph IDs 32bit
To match corresponding HarfBuzz and Cairo types, and would eventually
help us in supporting fonts with more than 65535 glyphs (currently
supported only by HarfBuzz).
Change-Id: I239421bcef6e1b26f17a4666243a239174ea4943
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139576
Tested-by: Jenkins
Reviewed-by: خالد حسني <khaled@aliftype.com>
Diffstat (limited to 'vcl/inc/glyphid.hxx')
-rw-r--r-- | vcl/inc/glyphid.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/inc/glyphid.hxx b/vcl/inc/glyphid.hxx index 6f32a429dde4..565beb618327 100644 --- a/vcl/inc/glyphid.hxx +++ b/vcl/inc/glyphid.hxx @@ -21,6 +21,6 @@ #include <sal/types.h> -typedef sal_uInt16 sal_GlyphId; +typedef uint32_t sal_GlyphId; /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |