1999-12-17 00:11:37 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ttobjs.h */
|
|
|
|
/* */
|
|
|
|
/* Objects manager (specification). */
|
|
|
|
/* */
|
2003-04-23 17:50:27 +02:00
|
|
|
/* Copyright 1996-2001, 2002, 2003 by */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* 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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#ifndef __TTOBJS_H__
|
|
|
|
#define __TTOBJS_H__
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_INTERNAL_OBJECTS_H
|
|
|
|
#include FT_INTERNAL_TRUETYPE_TYPES_H
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_BEGIN_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* TT_Driver */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a TrueType driver object. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_DriverRec_* TT_Driver;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* TT_Instance */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a TrueType size object. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_SizeRec_* TT_Size;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Type> */
|
|
|
|
/* TT_GlyphSlot */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* A handle to a TrueType glyph slot object. */
|
|
|
|
/* */
|
|
|
|
/* <Note> */
|
|
|
|
/* This is a direct typedef of FT_GlyphSlot, as there is nothing */
|
|
|
|
/* specific about the TrueType glyph slot. */
|
|
|
|
/* */
|
|
|
|
typedef FT_GlyphSlot TT_GlyphSlot;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Struct> */
|
|
|
|
/* TT_GraphicsState */
|
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* The TrueType graphics state used during bytecode interpretation. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_GraphicsState_
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort rp0;
|
|
|
|
FT_UShort rp1;
|
|
|
|
FT_UShort rp2;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UnitVector dualVector;
|
|
|
|
FT_UnitVector projVector;
|
|
|
|
FT_UnitVector freeVector;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Long loop;
|
|
|
|
FT_F26Dot6 minimum_distance;
|
|
|
|
FT_Int round_state;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool auto_flip;
|
|
|
|
FT_F26Dot6 control_value_cutin;
|
|
|
|
FT_F26Dot6 single_width_cutin;
|
|
|
|
FT_F26Dot6 single_width_value;
|
|
|
|
FT_Short delta_base;
|
|
|
|
FT_Short delta_shift;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte instruct_control;
|
|
|
|
FT_Bool scan_control;
|
|
|
|
FT_Int scan_type;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort gep0;
|
|
|
|
FT_UShort gep1;
|
|
|
|
FT_UShort gep2;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_GraphicsState;
|
|
|
|
|
2000-07-02 15:53:16 +02:00
|
|
|
|
2000-07-27 13:20:20 +02:00
|
|
|
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_glyphzone_done( TT_GlyphZone zone );
|
2000-11-04 09:33:38 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_glyphzone_new( FT_Memory memory,
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UShort maxPoints,
|
|
|
|
FT_Short maxContours,
|
|
|
|
TT_GlyphZone zone );
|
2000-06-16 21:34:52 +02:00
|
|
|
|
2000-07-27 13:20:20 +02:00
|
|
|
#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
|
|
|
|
|
2000-07-02 15:53:16 +02:00
|
|
|
|
2000-07-27 23:40:22 +02:00
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* EXECUTION SUBTABLES */
|
|
|
|
/* */
|
|
|
|
/* These sub-tables relate to instruction execution. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
#define TT_MAX_CODE_RANGES 3
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* There can only be 3 active code ranges at once: */
|
|
|
|
/* - the Font Program */
|
|
|
|
/* - the CVT Program */
|
|
|
|
/* - a glyph's instructions set */
|
|
|
|
/* */
|
|
|
|
typedef enum TT_CodeRange_Tag_
|
|
|
|
{
|
|
|
|
tt_coderange_none = 0,
|
|
|
|
tt_coderange_font,
|
|
|
|
tt_coderange_cvt,
|
|
|
|
tt_coderange_glyph
|
|
|
|
|
|
|
|
} TT_CodeRange_Tag;
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct TT_CodeRange_
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Byte* base;
|
|
|
|
FT_ULong size;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_CodeRange;
|
|
|
|
|
|
|
|
typedef TT_CodeRange TT_CodeRangeTable[TT_MAX_CODE_RANGES];
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Defines a function/instruction definition record. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_DefRecord_
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Int range; /* in which code range is it located? */
|
|
|
|
FT_Long start; /* where does it start? */
|
|
|
|
FT_UInt opc; /* function #, or instruction code */
|
|
|
|
FT_Bool active; /* is it active? */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_DefRecord, *TT_DefArray;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Subglyph transformation record. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_Transform_
|
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Fixed xx, xy; /* transformation matrix coefficients */
|
|
|
|
FT_Fixed yx, yy;
|
|
|
|
FT_F26Dot6 ox, oy; /* offsets */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_Transform;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Subglyph loading record. Used to load composite components. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_SubglyphRec_
|
|
|
|
{
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Long index; /* subglyph index; initialized with -1 */
|
|
|
|
FT_Bool is_scaled; /* is the subglyph scaled? */
|
|
|
|
FT_Bool is_hinted; /* should it be hinted? */
|
|
|
|
FT_Bool preserve_pps; /* preserve phantom points? */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Long file_offset;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_BBox bbox;
|
|
|
|
FT_Pos left_bearing;
|
|
|
|
FT_Pos advance;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-14 12:26:29 +01:00
|
|
|
TT_GlyphZoneRec zone;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Long arg1; /* first argument */
|
|
|
|
FT_Long arg2; /* second argument */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_UShort element_flag; /* current load element flag */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
TT_Transform transform; /* transformation matrix */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_Vector pp1, pp2; /* phantom points */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_SubGlyphRec, *TT_SubGlyph_Stack;
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* A note regarding non-squared pixels: */
|
|
|
|
/* */
|
2000-06-12 21:36:41 +02:00
|
|
|
/* (This text will probably go into some docs at some time; for now, it */
|
1999-12-17 00:11:37 +01:00
|
|
|
/* is kept here to explain some definitions in the TIns_Metrics */
|
|
|
|
/* record). */
|
|
|
|
/* */
|
|
|
|
/* The CVT is a one-dimensional array containing values that control */
|
|
|
|
/* certain important characteristics in a font, like the height of all */
|
|
|
|
/* capitals, all lowercase letter, default spacing or stem width/height. */
|
|
|
|
/* */
|
|
|
|
/* These values are found in FUnits in the font file, and must be scaled */
|
|
|
|
/* to pixel coordinates before being used by the CVT and glyph programs. */
|
|
|
|
/* Unfortunately, when using distinct x and y resolutions (or distinct x */
|
|
|
|
/* and y pointsizes), there are two possible scalings. */
|
|
|
|
/* */
|
|
|
|
/* A first try was to implement a `lazy' scheme where all values were */
|
|
|
|
/* scaled when first used. However, while some values are always used */
|
|
|
|
/* in the same direction, some others are used under many different */
|
|
|
|
/* circumstances and orientations. */
|
|
|
|
/* */
|
|
|
|
/* I have found a simpler way to do the same, and it even seems to work */
|
|
|
|
/* in most of the cases: */
|
|
|
|
/* */
|
|
|
|
/* - All CVT values are scaled to the maximum ppem size. */
|
|
|
|
/* */
|
|
|
|
/* - When performing a read or write in the CVT, a ratio factor is used */
|
|
|
|
/* to perform adequate scaling. Example: */
|
|
|
|
/* */
|
|
|
|
/* x_ppem = 14 */
|
|
|
|
/* y_ppem = 10 */
|
|
|
|
/* */
|
|
|
|
/* We choose ppem = x_ppem = 14 as the CVT scaling size. All cvt */
|
|
|
|
/* entries are scaled to it. */
|
|
|
|
/* */
|
|
|
|
/* x_ratio = 1.0 */
|
|
|
|
/* y_ratio = y_ppem/ppem (< 1.0) */
|
|
|
|
/* */
|
|
|
|
/* We compute the current ratio like: */
|
|
|
|
/* */
|
|
|
|
/* - If projVector is horizontal, */
|
|
|
|
/* ratio = x_ratio = 1.0 */
|
|
|
|
/* */
|
|
|
|
/* - if projVector is vertical, */
|
|
|
|
/* ratio = y_ratio */
|
|
|
|
/* */
|
|
|
|
/* - else, */
|
|
|
|
/* ratio = sqrt( (proj.x * x_ratio) ^ 2 + (proj.y * y_ratio) ^ 2 ) */
|
|
|
|
/* */
|
|
|
|
/* Reading a cvt value returns */
|
|
|
|
/* ratio * cvt[index] */
|
|
|
|
/* */
|
|
|
|
/* Writing a cvt value in pixels: */
|
|
|
|
/* cvt[index] / ratio */
|
|
|
|
/* */
|
|
|
|
/* The current ppem is simply */
|
|
|
|
/* ratio * ppem */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Metrics used by the TrueType size and context objects. */
|
|
|
|
/* */
|
|
|
|
typedef struct TT_Size_Metrics_
|
|
|
|
{
|
|
|
|
/* for non-square pixels */
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Long x_ratio;
|
|
|
|
FT_Long y_ratio;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort ppem; /* maximum ppem size */
|
|
|
|
FT_Long ratio; /* current ratio */
|
|
|
|
FT_Fixed scale;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_F26Dot6 compensations[4]; /* device-specific compensations */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool valid;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool rotated; /* `is the glyph rotated?'-flag */
|
|
|
|
FT_Bool stretched; /* `is the glyph stretched?'-flag */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_Size_Metrics;
|
|
|
|
|
|
|
|
|
2000-07-02 15:53:16 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* TrueType size class. */
|
|
|
|
/* */
|
1999-12-17 00:11:37 +01:00
|
|
|
typedef struct TT_SizeRec_
|
|
|
|
{
|
|
|
|
FT_SizeRec root;
|
|
|
|
|
2003-04-23 17:50:27 +02:00
|
|
|
FT_Size_Metrics metrics; /* slightly different from the root metrics */
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_Size_Metrics ttmetrics;
|
|
|
|
|
2000-11-07 00:07:51 +01:00
|
|
|
#ifdef TT_CONFIG_OPTION_EMBEDDED_BITMAPS
|
2000-11-07 07:30:29 +01:00
|
|
|
|
|
|
|
FT_UInt strike_index; /* 0xFFFF to indicate invalid */
|
|
|
|
FT_Size_Metrics strike_metrics; /* current strike's metrics */
|
|
|
|
|
2000-11-07 00:07:51 +01:00
|
|
|
#endif
|
|
|
|
|
2000-02-02 13:16:19 +01:00
|
|
|
#ifdef TT_CONFIG_OPTION_BYTECODE_INTERPRETER
|
2000-06-12 21:36:41 +02:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt num_function_defs; /* number of function definitions */
|
|
|
|
FT_UInt max_function_defs;
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_DefArray function_defs; /* table of function definitions */
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt num_instruction_defs; /* number of ins. definitions */
|
|
|
|
FT_UInt max_instruction_defs;
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_DefArray instruction_defs; /* table of ins. definitions */
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UInt max_func;
|
|
|
|
FT_UInt max_ins;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
TT_CodeRangeTable codeRangeTable;
|
|
|
|
|
|
|
|
TT_GraphicsState GS;
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_ULong cvt_size; /* the scaled control value table */
|
|
|
|
FT_Long* cvt;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_UShort storage_size; /* The storage area is now part of */
|
|
|
|
FT_Long* storage; /* the instance */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
TT_GlyphZoneRec twilight; /* The instance's twilight zone */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
/* debugging variables */
|
|
|
|
|
|
|
|
/* When using the debugger, we must keep the */
|
|
|
|
/* execution context tied to the instance */
|
|
|
|
/* object rather than asking it on demand. */
|
|
|
|
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Bool debug;
|
1999-12-17 00:11:37 +01:00
|
|
|
TT_ExecContext context;
|
|
|
|
|
2000-02-02 13:16:19 +01:00
|
|
|
#endif /* TT_CONFIG_OPTION_BYTECODE_INTERPRETER */
|
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
} TT_SizeRec;
|
|
|
|
|
|
|
|
|
2000-07-02 15:53:16 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* TrueType driver class. */
|
|
|
|
/* */
|
1999-12-17 00:11:37 +01:00
|
|
|
typedef struct TT_DriverRec_
|
|
|
|
{
|
2002-04-01 16:25:28 +02:00
|
|
|
FT_DriverRec root;
|
|
|
|
TT_ExecContext context; /* execution context */
|
|
|
|
TT_GlyphZoneRec zone; /* glyph loader points zone */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-04-01 16:25:28 +02:00
|
|
|
void* extension_component;
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
} TT_DriverRec;
|
|
|
|
|
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Face functions */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_face_init( FT_Stream stream,
|
2001-06-28 09:17:51 +02:00
|
|
|
TT_Face face,
|
|
|
|
FT_Int face_index,
|
|
|
|
FT_Int num_params,
|
|
|
|
FT_Parameter* params );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_face_done( TT_Face face );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Size functions */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_size_init( TT_Size size );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_size_done( TT_Size size );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_size_reset( TT_Size size );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-06-12 21:36:41 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* Driver functions */
|
|
|
|
/* */
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_driver_init( TT_Driver driver );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
tt_driver_done( TT_Driver driver );
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-07-02 15:53:16 +02:00
|
|
|
|
2000-12-08 03:42:29 +01:00
|
|
|
FT_END_HEADER
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-12-09 01:45:38 +01:00
|
|
|
#endif /* __TTOBJS_H__ */
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|