* include/freetype/ftmodapi.h, include/internal/ftserv.h, include/internal/services/svtteng.h, src/base/ftobjs.c, src/truetype/ttdriver.c: adding a new API named FT_Get_TrueType_Engine_Type to determine wether we have a patented, unpatented or unimplemented TrueType bytecode interpreter. the FT_Get_Module_Flags API was removed consequently.
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 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287
diff --git a/ChangeLog b/ChangeLog
index 36d983e..fcbc5e9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,15 @@
2006-02-21 David Turner <david@freetype.org>
+ * include/freetype/ftmodapi.h, include/internal/ftserv.h,
+ include/internal/services/svtteng.h, src/base/ftobjs.c,
+ src/truetype/ttdriver.c:
+
+ adding a new API named FT_Get_TrueType_Engine_Type to determine
+ wether we have a patented, unpatented or unimplemented TrueType
+ bytecode interpreter.
+
+ the FT_Get_Module_Flags API was removed consequently.
+
* src/sfnt/sfobjs.c (sfnt_face_load): fixed silly bug that
prevented embedded bitmaps from being correctly listed and used
@@ -11,7 +21,7 @@
2006-02-20 David Turner <david@freetype.org>
- Support binary compatibility with the X.Org server's Xfont library.
+ Support binary compatibility with the X.Org server's Xfont library.
Note that this change unfortunately prevents memory optimizations
for the embedded bitmap loader.
diff --git a/include/freetype/config/ftoption.h b/include/freetype/config/ftoption.h
index bb1bbee..28e82e2 100644
--- a/include/freetype/config/ftoption.h
+++ b/include/freetype/config/ftoption.h
@@ -448,7 +448,7 @@ FT_BEGIN_HEADER
/* FT_PARAM_TAG_UNPATENTED_HINTING; or when the debug hook */
/* FT_DEBUG_HOOK_UNPATENTED_HINTING is globally activated. */
/* */
-#define TT_CONFIG_OPTION_UNPATENTED_HINTING
+#define xxTT_CONFIG_OPTION_UNPATENTED_HINTING
/*************************************************************************/
diff --git a/include/freetype/ftmodapi.h b/include/freetype/ftmodapi.h
index 6f25794..6f41779 100644
--- a/include/freetype/ftmodapi.h
+++ b/include/freetype/ftmodapi.h
@@ -84,7 +84,7 @@ FT_BEGIN_HEADER
typedef void
(*FT_Module_Destructor)( FT_Module module );
- typedef FT_Module_Interface
+ typedef FT_Module_Interface
(*FT_Module_Requester)( FT_Module module,
const char* name );
@@ -216,28 +216,6 @@ FT_BEGIN_HEADER
/*************************************************************************/
/* */
/* <Function> */
- /* FT_Module_Get_Flags */
- /* */
- /* <Description> */
- /* Gets the module flags for a given module. */
- /* */
- /* <Input> */
- /* module :: A handle to a module object. */
- /* */
- /* <Output> */
- /* flags :: The module's flags. */
- /* */
- /* <Return> */
- /* FreeType error code. 0 means success. */
- /* */
- FT_EXPORT( FT_Error )
- FT_Module_Get_Flags( FT_Module module,
- FT_ULong* flags );
-
-
- /*************************************************************************/
- /* */
- /* <Function> */
/* FT_New_Library */
/* */
/* <Description> */
@@ -329,6 +307,61 @@ FT_BEGIN_HEADER
FT_Add_Default_Modules( FT_Library library );
+ /**
+ * @enum: FT_TrueTypeEngineType
+ *
+ * @description:
+ * a list of values describing which kind of truetype bytecode
+ * engine is implemented in a given FT_Library instance. It is used
+ * by the @FT_Get_TrueType_Engine_Type function
+ *
+ * @values:
+ * FT_TRUETYPE_ENGINE_TYPE_NONE ::
+ * the library doesn't implement any kind of bytecode interpreter
+ *
+ * FT_TRUETYPE_ENGINE_TYPE_UNPATENTED ::
+ * the library implements a bytecode interpreter that doesn't
+ * support the patented operations of the TrueType virtual machine.
+ *
+ * this interpreter can only be used to load certain Asian fonts
+ * from Dynalabs. It will produce crap output for any other font.
+ * see @
+ *
+ * FT_TRUETYPE_ENGINE_TYPE_PATENTED ::
+ * the library implements a bytecode interpreter that covers
+ * the full instruction set of the TrueType virtual machine.
+ * Better check your legal department for license compliance !!
+ *
+ * @since: 2.2
+ */
+ typedef enum
+ {
+ FT_TRUETYPE_ENGINE_TYPE_NONE = 0,
+ FT_TRUETYPE_ENGINE_TYPE_UNPATENTED,
+ FT_TRUETYPE_ENGINE_TYPE_PATENTED
+
+ } FT_TrueTypeEngineType;
+
+
+ /**
+ * @func: FT_Get_TrueType_Engine_Type
+ *
+ * @description:
+ * this function returns a @FT_TrueTypeEngineType value to indicates
+ * which level of the TrueType virtual machine a given library instance
+ * supports.
+ *
+ * @input:
+ * library :: a library instance
+ *
+ * @return:
+ * a value indicating which level is supported
+ *
+ * @since: 2.2
+ */
+ FT_EXPORT( FT_TrueTypeEngineType )
+ FT_Get_TrueType_Engine_Type( FT_Library library );
+
/* */
diff --git a/include/freetype/internal/ftserv.h b/include/freetype/internal/ftserv.h
index 3e81270..aaadf01 100644
--- a/include/freetype/internal/ftserv.h
+++ b/include/freetype/internal/ftserv.h
@@ -314,6 +314,7 @@ FT_BEGIN_HEADER
#define FT_SERVICE_WINFNT_H <freetype/internal/services/svwinfnt.h>
#define FT_SERVICE_XFREE86_NAME_H <freetype/internal/services/svxf86nm.h>
#define FT_SERVICE_KERNING_H <freetype/internal/services/svkern.h>
+#define FT_SERVICE_TRUETYPE_ENGINE_H <freetype/internal/services/svtteng.h>
/* */
diff --git a/include/freetype/internal/services/svsfnt.h b/include/freetype/internal/services/svsfnt.h
index 87346c6..123008e 100644
--- a/include/freetype/internal/services/svsfnt.h
+++ b/include/freetype/internal/services/svsfnt.h
@@ -63,14 +63,14 @@ FT_BEGIN_HEADER
FT_DEFINE_SERVICE( SFNT_Table )
{
- FT_SFNT_TableLoadFunc load_table;
- FT_SFNT_TableGetFunc get_table;
- FT_SFNT_TableInfoFunc table_info;
+ FT_SFNT_TableLoadFunc load_table;
+ FT_SFNT_TableGetFunc get_table;
+ FT_SFNT_TableInfoFunc table_info;
};
/* */
-
+
FT_END_HEADER
diff --git a/src/base/ftobjs.c b/src/base/ftobjs.c
index e7b6666..e2102e7 100644
--- a/src/base/ftobjs.c
+++ b/src/base/ftobjs.c
@@ -34,6 +34,7 @@
#include FT_SERVICE_GLYPH_DICT_H
#include FT_SERVICE_TT_CMAP_H
#include FT_SERVICE_KERNING_H
+#include FT_SERVICE_TRUETYPE_ENGINE_H
FT_BASE_DEF( FT_Pointer )
@@ -3408,23 +3409,6 @@
}
- /* documentation is in ftmodapi.h */
-
- FT_EXPORT_DEF( FT_Error )
- FT_Module_Get_Flags( FT_Module module,
- FT_ULong* flags )
- {
- if ( !module )
- return FT_Err_Invalid_Driver_Handle;
-
- if ( !flags )
- return FT_Err_Invalid_Argument;
-
- *flags = module->clazz->module_flags;
- return FT_Err_Ok;
- }
-
-
/* documentation is in ftobjs.h */
FT_BASE_DEF( const void* )
@@ -3675,6 +3659,29 @@
}
+ /* documentation is in ftmodapi.h */
+
+ FT_EXPORT_DEF( FT_TrueTypeEngineType )
+ FT_Get_TrueType_Engine_Type( FT_Library library )
+ {
+ FT_TrueTypeEngineType result = FT_TRUETYPE_ENGINE_TYPE_NONE;
+
+ if ( library )
+ {
+ FT_Module module = FT_Get_Module( library, "truetype" );
+
+ if ( module )
+ {
+ FT_Service_TrueTypeEngine service;
+
+ service = ft_module_get_service( module, FT_SERVICE_ID_TRUETYPE_ENGINE );
+ if ( service )
+ result = service->engine_type;
+ }
+ }
+ return result;
+ }
+
#ifdef FT_CONFIG_OPTION_OLD_INTERNALS
FT_BASE_DEF( FT_Error )
diff --git a/src/truetype/ttdriver.c b/src/truetype/ttdriver.c
index 4a7e66b..4324d6f 100644
--- a/src/truetype/ttdriver.c
+++ b/src/truetype/ttdriver.c
@@ -28,6 +28,8 @@
#include FT_SERVICE_MULTIPLE_MASTERS_H
#endif
+#include FT_SERVICE_TRUETYPE_ENGINE_H
+
#include "ttdriver.h"
#include "ttgload.h"
@@ -290,6 +292,18 @@
};
#endif
+ static const FT_Service_TrueTypeEngineRec tt_service_truetype_engine =
+ {
+#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
+# ifdef TT_CONFIG_OPTION_UNPATENTED_HINTING
+ FT_TRUETYPE_ENGINE_TYPE_UNPATENTED
+# else
+ FT_TRUETYPE_ENGINE_TYPE_PATENTED
+# endif
+#else
+ FT_TRUETYPE_ENGINE_TYPE_NONE
+#endif
+ };
static const FT_ServiceDescRec tt_services[] =
{
@@ -297,6 +311,7 @@
#ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
{ FT_SERVICE_ID_MULTI_MASTERS, &tt_service_gx_multi_masters },
#endif
+ { FT_SERVICE_ID_TRUETYPE_ENGINE, &tt_service_truetype_engine },
{ NULL, NULL }
};