summaryrefslogtreecommitdiffstats
path: root/include/internal/t1types.h
diff options
context:
space:
mode:
authorMakoto Onuki <omakoto@google.com>2015-06-09 16:35:08 -0700
committerMakoto Onuki <omakoto@google.com>2015-06-10 14:52:29 -0700
commitec62c527eb34ee4481a0153ceb42dfd35d7e1d26 (patch)
tree7e67208cafc4572557e8d10469fb5dc173ca2edf /include/internal/t1types.h
parentb7aab0ad37ad69279e367e5960912fc3ff778233 (diff)
downloadandroid_external_freetype-ec62c527eb34ee4481a0153ceb42dfd35d7e1d26.tar.gz
android_external_freetype-ec62c527eb34ee4481a0153ceb42dfd35d7e1d26.tar.bz2
android_external_freetype-ec62c527eb34ee4481a0153ceb42dfd35d7e1d26.zip
Update to freetype 2.6.0
Bug 18751561 Change-Id: I871cc2925dc5908ec48073e11ecffad1924bbf50
Diffstat (limited to 'include/internal/t1types.h')
-rw-r--r--include/internal/t1types.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/internal/t1types.h b/include/internal/t1types.h
index e20237c..029acc4 100644
--- a/include/internal/t1types.h
+++ b/include/internal/t1types.h
@@ -5,7 +5,7 @@
/* Basic Type1/Type2 type definitions and interface (specification */
/* only). */
/* */
-/* Copyright 1996-2004, 2006, 2008, 2009, 2011, 2013 by */
+/* Copyright 1996-2015 by */
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
/* */
/* This file is part of the FreeType project, and may only be used, */
@@ -106,12 +106,12 @@ FT_BEGIN_HEADER
FT_Int num_subrs;
FT_Byte** subrs;
- FT_PtrDist* subrs_len;
+ FT_UInt* subrs_len;
FT_Int num_glyphs;
FT_String** glyph_names; /* array of glyph names */
FT_Byte** charstrings; /* array of glyph charstrings */
- FT_PtrDist* charstrings_len;
+ FT_UInt* charstrings_len;
FT_Byte paint_type;
FT_Byte font_type;
@@ -127,7 +127,7 @@ FT_BEGIN_HEADER
typedef struct CID_SubrsRec_
{
- FT_UInt num_subrs;
+ FT_Int num_subrs;
FT_Byte** code;
} CID_SubrsRec, *CID_Subrs;
@@ -157,10 +157,10 @@ FT_BEGIN_HEADER
typedef struct AFM_KernPairRec_
{
- FT_Int index1;
- FT_Int index2;
- FT_Int x;
- FT_Int y;
+ FT_UInt index1;
+ FT_UInt index2;
+ FT_Int x;
+ FT_Int y;
} AFM_KernPairRec, *AFM_KernPair;
@@ -171,9 +171,9 @@ FT_BEGIN_HEADER
FT_Fixed Ascender;
FT_Fixed Descender;
AFM_TrackKern TrackKerns; /* free if non-NULL */
- FT_Int NumTrackKern;
+ FT_UInt NumTrackKern;
AFM_KernPair KernPairs; /* free if non-NULL */
- FT_Int NumKernPair;
+ FT_UInt NumKernPair;
} AFM_FontInfoRec, *AFM_FontInfo;