removing obsolete file
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192
diff --git a/include/freetype/internal/psglobal.h b/include/freetype/internal/psglobal.h
deleted file mode 100644
index 5ddafff..0000000
--- a/include/freetype/internal/psglobal.h
+++ /dev/null
@@ -1,186 +0,0 @@
-/***************************************************************************/
-/* */
-/* psglobal.h */
-/* */
-/* Global PostScript hinting structures (specification only). */
-/* */
-/* Copyright 2001 by */
-/* David Turner, Robert Wilhelm, and Werner Lemberg. */
-/* */
-/* This file is part of the FreeType project, and may only be used, */
-/* modified, and distributed under the terms of the FreeType project */
-/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
-/* this file you indicate that you have read the license and */
-/* understand and accept it fully. */
-/* */
-/***************************************************************************/
-
-
-#ifndef __PSGLOBAL_H__
-#define __PSGLOBAL_H__
-
-
-FT_BEGIN_HEADER
-
-
- /**********************************************************************/
- /**********************************************************************/
- /***** *****/
- /***** PUBLIC STRUCTURES & API *****/
- /***** *****/
- /**********************************************************************/
- /**********************************************************************/
-
-#if 0
-
- /*************************************************************************/
- /* */
- /* @constant: */
- /* PS_GLOBALS_MAX_BLUE_ZONES */
- /* */
- /* @description: */
- /* The maximum number of blue zones in a font global hints structure. */
- /* See @PS_Globals_BluesRec. */
- /* */
-#define PS_GLOBALS_MAX_BLUE_ZONES 16
-
-
- /*************************************************************************/
- /* */
- /* @constant: */
- /* PS_GLOBALS_MAX_STD_WIDTHS */
- /* */
- /* @description: */
- /* The maximum number of standard and snap widths in either the */
- /* horizontal or vertical direction. See @PS_Globals_WidthsRec. */
- /* */
-#define PS_GLOBALS_MAX_STD_WIDTHS 16
-
-
- /*************************************************************************/
- /* */
- /* @type: */
- /* PS_Globals */
- /* */
- /* @description: */
- /* A handle to a @PS_GlobalsRec structure used to describe the global */
- /* hints of a given font. */
- /* */
- typedef struct PS_GlobalsRec_* PS_Globals;
-
-
- /*************************************************************************/
- /* */
- /* @struct: */
- /* PS_Globals_BluesRec */
- /* */
- /* @description: */
- /* A structure used to model the global blue zones of a given font. */
- /* */
- /* @fields: */
- /* count :: The number of blue zones. */
- /* */
- /* zones :: An array of (count*2) coordinates describing the */
- /* zones. */
- /* */
- /* count_family :: The number of family blue zones. */
- /* */
- /* zones_family :: An array of (count_family*2) coordinates describing */
- /* the family blue zones. */
- /* */
- /* scale :: The blue scale to be used (fixed float). */
- /* */
- /* shift :: The blue shift to be used. */
- /* */
- /* fuzz :: Te blue fuzz to be used. */
- /* */
- /* @note: */
- /* Each blue zone is modeled by a (reference,overshoot) coordinate */
- /* pair in the table. Zones can be placed in any order. */
- /* */
- typedef struct PS_Globals_BluesRec_
- {
- FT_UInt count;
- FT_Int16 zones[2 * PS_GLOBALS_MAX_BLUE_ZONES];
-
- FT_UInt count_family;
- FT_Int16 zones_family[2 * PS_GLOBALS_MAX_BLUE_ZONES];
-
- FT_Fixed scale;
- FT_Int16 shift;
- FT_Int16 fuzz;
-
- } PS_Globals_BluesRec, *PS_Globals_Blues;
-
-
- /*************************************************************************/
- /* */
- /* @type: */
- /* PS_Global_Widths */
- /* */
- /* @description: */
- /* A handle to a @PS_Globals_WidthsRec structure used to model the */
- /* global standard and snap widths in a given direction. */
- /* */
- typedef struct PS_Globals_WidthsRec_* PS_Globals_Widths;
-
-
- /*************************************************************************/
- /* */
- /* @struct: */
- /* PS_Globals_WidthsRec */
- /* */
- /* @description: */
- /* A structure used to model the global standard and snap widths in a */
- /* given font. */
- /* */
- /* @fields: */
- /* count :: The number of widths. */
- /* */
- /* widths :: An array of `count' widths in font units. */
- /* */
- /* @note: */
- /* `widths[0]' must be the standard width or height, while remaining */
- /* elements of the array are snap widths or heights. */
- /* */
- typedef struct PS_Globals_WidthsRec_
- {
- FT_UInt count;
- FT_Int16 widths[PS_GLOBALS_MAX_STD_WIDTHS];
-
- } PS_Globals_WidthsRec;
-
-
- /*************************************************************************/
- /* */
- /* @struct: */
- /* PS_GlobalsRec */
- /* */
- /* @description: */
- /* A structure used to model the global hints for a given font. */
- /* */
- /* @fields: */
- /* horizontal :: The horizontal widths. */
- /* */
- /* vertical :: The vertical heights. */
- /* */
- /* blues :: The blue zones. */
- /* */
- typedef struct PS_GlobalsRec_
- {
- PS_Globals_WidthsRec horizontal;
- PS_Globals_WidthsRec vertical;
- PS_Globals_BluesRec blues;
-
- } PS_GlobalsRec;
-
-#endif
-
- /* */
-
-FT_END_HEADER
-
-#endif /* __PS_GLOBAL_H__ */
-
-
-/* END */