ReactOS 0.4.15-dev-7842-g558ab78
psglue.h
Go to the documentation of this file.
1/***************************************************************************/
2/* */
3/* psglue.h */
4/* */
5/* Adobe's code for shared stuff (specification only). */
6/* */
7/* Copyright 2007-2013 Adobe Systems Incorporated. */
8/* */
9/* This software, and all works of authorship, whether in source or */
10/* object code form as indicated by the copyright notice(s) included */
11/* herein (collectively, the "Work") is made available, and may only be */
12/* used, modified, and distributed under the FreeType Project License, */
13/* LICENSE.TXT. Additionally, subject to the terms and conditions of the */
14/* FreeType Project License, each contributor to the Work hereby grants */
15/* to any individual or legal entity exercising permissions granted by */
16/* the FreeType Project License and this section (hereafter, "You" or */
17/* "Your") a perpetual, worldwide, non-exclusive, no-charge, */
18/* royalty-free, irrevocable (except as stated in this section) patent */
19/* license to make, have made, use, offer to sell, sell, import, and */
20/* otherwise transfer the Work, where such license applies only to those */
21/* patent claims licensable by such contributor that are necessarily */
22/* infringed by their contribution(s) alone or by combination of their */
23/* contribution(s) with the Work to which such contribution(s) was */
24/* submitted. If You institute patent litigation against any entity */
25/* (including a cross-claim or counterclaim in a lawsuit) alleging that */
26/* the Work or a contribution incorporated within the Work constitutes */
27/* direct or contributory patent infringement, then any patent licenses */
28/* granted to You under this License for that Work shall terminate as of */
29/* the date such litigation is filed. */
30/* */
31/* By using, modifying, or distributing the Work you indicate that you */
32/* have read and understood the terms and conditions of the */
33/* FreeType Project License as well as those provided in this section, */
34/* and you accept them fully. */
35/* */
36/***************************************************************************/
37
38
39#ifndef PSGLUE_H_
40#define PSGLUE_H_
41
42
43/* common includes for other modules */
44#include "pserror.h"
45#include "psfixed.h"
46#include "psarrst.h"
47#include "psread.h"
48
49
51
52
53 /* rendering parameters */
54
55 /* apply hints to rendered glyphs */
56#define CF2_FlagsHinted 1
57 /* for testing */
58#define CF2_FlagsDarkened 2
59
60 /* type for holding the flags */
62
63
64 /* elements of a glyph outline */
65 typedef enum CF2_PathOp_
66 {
67 CF2_PathOpMoveTo = 1, /* change the current point */
68 CF2_PathOpLineTo = 2, /* line */
69 CF2_PathOpQuadTo = 3, /* quadratic curve */
70 CF2_PathOpCubeTo = 4 /* cubic curve */
71
73
74
75 /* a matrix of fixed point values */
76 typedef struct CF2_Matrix_
77 {
84
86
87
88 /* these typedefs are needed by more than one header file */
89 /* and gcc compiler doesn't allow redefinition */
92
93
94 /* A common structure for all callback parameters. */
95 /* */
96 /* Some members may be unused. For example, `pt0' is not used for */
97 /* `moveTo' and `pt3' is not used for `quadTo'. The initial point `pt0' */
98 /* is included for each path element for generality; curve conversions */
99 /* need it. The `op' parameter allows one function to handle multiple */
100 /* element types. */
101
103 {
108
110
112
113
114 /* forward reference */
117
118 /* callback function pointers */
119 typedef void
122
123
125 {
130
131 CF2_Int windingMomentum; /* for winding order detection */
132
135 };
136
137
139
140
141#endif /* PSGLUE_H_ */
142
143
144/* END */
#define FT_END_HEADER
Definition: ftheader.h:54
#define FT_BEGIN_HEADER
Definition: ftheader.h:36
typedefFT_BEGIN_HEADER struct FT_MemoryRec_ * FT_Memory
Definition: ftsystem.h:66
int FT_Error
Definition: fttypes.h:300
GLenum const GLfloat * params
Definition: glext.h:5645
#define CF2_Int
Definition: pstypes.h:65
FT_Int32 CF2_F16Dot16
Definition: pstypes.h:69
struct CF2_OutlineCallbacksRec_ * CF2_OutlineCallbacks
Definition: psglue.h:116
enum CF2_PathOp_ CF2_PathOp
CF2_Int CF2_RenderingFlags
Definition: psglue.h:61
struct CF2_CallbackParamsRec_ * CF2_CallbackParams
struct CF2_HintRec_ * CF2_Hint
Definition: psglue.h:91
void(* CF2_Callback_Type)(CF2_OutlineCallbacks callbacks, const CF2_CallbackParams params)
Definition: psglue.h:120
CF2_PathOp_
Definition: psglue.h:66
@ CF2_PathOpMoveTo
Definition: psglue.h:67
@ CF2_PathOpQuadTo
Definition: psglue.h:69
@ CF2_PathOpCubeTo
Definition: psglue.h:70
@ CF2_PathOpLineTo
Definition: psglue.h:68
struct CF2_Matrix_ CF2_Matrix
struct CF2_FontRec_ * CF2_Font
Definition: psglue.h:90
struct CF2_CallbackParamsRec_ CF2_CallbackParamsRec
CF2_F16Dot16 c
Definition: psglue.h:80
CF2_F16Dot16 b
Definition: psglue.h:79
CF2_F16Dot16 ty
Definition: psglue.h:83
CF2_F16Dot16 a
Definition: psglue.h:78
CF2_F16Dot16 d
Definition: psglue.h:81
CF2_F16Dot16 tx
Definition: psglue.h:82
CF2_Callback_Type cubeTo
Definition: psglue.h:129
CF2_Callback_Type moveTo
Definition: psglue.h:126
CF2_Callback_Type lineTo
Definition: psglue.h:127
CF2_Callback_Type quadTo
Definition: psglue.h:128
static int callbacks
Definition: xmllint.c:838