~oif-team/ubuntu/natty/qt4-x11/xi2.1

« back to all changes in this revision

Viewing changes to src/3rdparty/freetype/include/freetype/ftstroke.h

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-08-24 04:09:09 UTC
  • Revision ID: james.westby@ubuntu.com-20050824040909-xmxe9jfr4a0w5671
Tags: upstream-4.0.0
ImportĀ upstreamĀ versionĀ 4.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************/
 
2
/*                                                                         */
 
3
/*  ftstroke.h                                                             */
 
4
/*                                                                         */
 
5
/*    FreeType path stroker (specification).                               */
 
6
/*                                                                         */
 
7
/*  Copyright 2002, 2003, 2004 by                                          */
 
8
/*  David Turner, Robert Wilhelm, and Werner Lemberg.                      */
 
9
/*                                                                         */
 
10
/*  This file is part of the FreeType project, and may only be used,       */
 
11
/*  modified, and distributed under the terms of the FreeType project      */
 
12
/*  license, LICENSE.TXT.  By continuing to use, modify, or distribute     */
 
13
/*  this file you indicate that you have read the license and              */
 
14
/*  understand and accept it fully.                                        */
 
15
/*                                                                         */
 
16
/***************************************************************************/
 
17
 
 
18
 
 
19
#ifndef __FT_STROKE_H__
 
20
#define __FT_STROKE_H__
 
21
 
 
22
#include <ft2build.h>
 
23
#include FT_OUTLINE_H
 
24
#include FT_GLYPH_H
 
25
 
 
26
FT_BEGIN_HEADER
 
27
 
 
28
 /*@*************************************************************
 
29
  *
 
30
  * @type:
 
31
  *   FT_Stroker
 
32
  *
 
33
  * @description:
 
34
  *   Opaque handler to a path stroker object.
 
35
  */
 
36
  typedef struct FT_StrokerRec_*  FT_Stroker;
 
37
 
 
38
 
 
39
  /*@*************************************************************
 
40
   *
 
41
   * @enum:
 
42
   *   FT_Stroker_LineJoin
 
43
   *
 
44
   * @description:
 
45
   *   These values determine how two joining lines are rendered
 
46
   *   in a stroker.
 
47
   *
 
48
   * @values:
 
49
   *   FT_STROKER_LINEJOIN_ROUND ::
 
50
   *     Used to render rounded line joins.  Circular arcs are used
 
51
   *     to join two lines smoothly.
 
52
   *
 
53
   *   FT_STROKER_LINEJOIN_BEVEL ::
 
54
   *     Used to render beveled line joins; i.e., the two joining lines
 
55
   *     are extended until they intersect.
 
56
   *
 
57
   *   FT_STROKER_LINEJOIN_MITER ::
 
58
   *     Same as beveled rendering, except that an additional line
 
59
   *     break is added if the angle between the two joining lines
 
60
   *     is too closed (this is useful to avoid unpleasant spikes
 
61
   *     in beveled rendering).
 
62
   */
 
63
  typedef enum
 
64
  {
 
65
    FT_STROKER_LINEJOIN_ROUND = 0,
 
66
    FT_STROKER_LINEJOIN_BEVEL,
 
67
    FT_STROKER_LINEJOIN_MITER
 
68
 
 
69
  } FT_Stroker_LineJoin;
 
70
 
 
71
 
 
72
  /*@*************************************************************
 
73
   *
 
74
   * @enum:
 
75
   *   FT_Stroker_LineCap
 
76
   *
 
77
   * @description:
 
78
   *   These values determine how the end of opened sub-paths are
 
79
   *   rendered in a stroke.
 
80
   *
 
81
   * @values:
 
82
   *   FT_STROKER_LINECAP_BUTT ::
 
83
   *     The end of lines is rendered as a full stop on the last
 
84
   *     point itself.
 
85
   *
 
86
   *   FT_STROKER_LINECAP_ROUND ::
 
87
   *     The end of lines is rendered as a half-circle around the
 
88
   *     last point.
 
89
   *
 
90
   *   FT_STROKER_LINECAP_SQUARE ::
 
91
   *     The end of lines is rendered as a square around the
 
92
   *     last point.
 
93
   */
 
94
  typedef enum
 
95
  {
 
96
    FT_STROKER_LINECAP_BUTT = 0,
 
97
    FT_STROKER_LINECAP_ROUND,
 
98
    FT_STROKER_LINECAP_SQUARE
 
99
 
 
100
  } FT_Stroker_LineCap;
 
101
 
 
102
 
 
103
  /**************************************************************
 
104
   *
 
105
   * @enum:
 
106
   *   FT_StrokerBorder
 
107
   *
 
108
   * @description:
 
109
   *   These values are used to select a given stroke border
 
110
   *   in @FT_Stroker_GetBorderCounts and @FT_Stroker_ExportBorder.
 
111
   *
 
112
   * @values:
 
113
   *   FT_STROKER_BORDER_LEFT ::
 
114
   *     Select the left border, relative to the drawing direction.
 
115
   *
 
116
   *   FT_STROKER_BORDER_RIGHT ::
 
117
   *     Select the right border, relative to the drawing direction.
 
118
   *
 
119
   * @note:
 
120
   *   Applications are generally interested in the `inside' and `outside'
 
121
   *   borders.  However, there is no direct mapping between these and
 
122
   *   the `left' / `right' ones, since this really depends on the glyph's
 
123
   *   drawing orientation, which varies between font formats.
 
124
   *
 
125
   *   You can however use @FT_Outline_GetInsideBorder and
 
126
   *   @FT_Outline_GetOutsideBorder to get these.
 
127
   */
 
128
  typedef enum
 
129
  {
 
130
    FT_STROKER_BORDER_LEFT = 0,
 
131
    FT_STROKER_BORDER_RIGHT
 
132
 
 
133
  } FT_StrokerBorder;
 
134
 
 
135
 
 
136
  /**************************************************************
 
137
   *
 
138
   * @function:
 
139
   *   FT_Outline_GetInsideBorder
 
140
   *
 
141
   * @description:
 
142
   *   Retrieve the @FT_StrokerBorder value corresponding to the
 
143
   *   `inside' borders of a given outline.
 
144
   *
 
145
   * @input:
 
146
   *   outline ::
 
147
   *     The source outline handle.
 
148
   *
 
149
   * @return:
 
150
   *   The border index.  @FT_STROKER_BORDER_LEFT for empty or invalid
 
151
   *   outlines.
 
152
   */
 
153
  FT_EXPORT( FT_StrokerBorder )
 
154
  FT_Outline_GetInsideBorder( FT_Outline*  outline );
 
155
 
 
156
 
 
157
  /**************************************************************
 
158
   *
 
159
   * @function:
 
160
   *   FT_Outline_GetOutsideBorder
 
161
   *
 
162
   * @description:
 
163
   *   Retrieve the @FT_StrokerBorder value corresponding to the
 
164
   *   `outside' borders of a given outline.
 
165
   *
 
166
   * @input:
 
167
   *   outline ::
 
168
   *     The source outline handle.
 
169
   *
 
170
   * @return:
 
171
   *   The border index.  @FT_STROKER_BORDER_LEFT for empty or invalid
 
172
   *   outlines.
 
173
   */
 
174
  FT_EXPORT( FT_StrokerBorder )
 
175
  FT_Outline_GetOutsideBorder( FT_Outline*  outline );
 
176
 
 
177
 
 
178
  /**************************************************************
 
179
   *
 
180
   * @function:
 
181
   *   FT_Stroker_New
 
182
   *
 
183
   * @description:
 
184
   *   Create a new stroker object.
 
185
   *
 
186
   * @input:
 
187
   *   memory ::
 
188
   *     The memory manager handle.
 
189
   *
 
190
   * @output:
 
191
   *   A new stroker object handle.  NULL in case of error.
 
192
   *
 
193
   * @return:
 
194
   *    FreeType error code.  0 means success.
 
195
   */
 
196
  FT_EXPORT( FT_Error )
 
197
  FT_Stroker_New( FT_Memory    memory,
 
198
                  FT_Stroker  *astroker );
 
199
 
 
200
 
 
201
  /**************************************************************
 
202
   *
 
203
   * @function:
 
204
   *   FT_Stroker_Set
 
205
   *
 
206
   * @description:
 
207
   *   Reset a stroker object's attributes.
 
208
   *
 
209
   * @input:
 
210
   *   stroker ::
 
211
   *     The target stroker handle.
 
212
   *
 
213
   *   radius ::
 
214
   *     The border radius.
 
215
   *
 
216
   *   line_cap ::
 
217
   *     The line cap style.
 
218
   *
 
219
   *   line_join ::
 
220
   *     The line join style.
 
221
   *
 
222
   *   miter_limit ::
 
223
   *     The miter limit for the FT_STROKER_LINEJOIN_MITER style,
 
224
   *     expressed as 16.16 fixed point value.
 
225
   *
 
226
   * @note:
 
227
   *   The radius is expressed in the same units that the outline
 
228
   *   coordinates.
 
229
   */
 
230
  FT_EXPORT( void )
 
231
  FT_Stroker_Set( FT_Stroker           stroker,
 
232
                  FT_Fixed             radius,
 
233
                  FT_Stroker_LineCap   line_cap,
 
234
                  FT_Stroker_LineJoin  line_join,
 
235
                  FT_Fixed             miter_limit );
 
236
 
 
237
 
 
238
  /**************************************************************
 
239
   *
 
240
   * @function:
 
241
   *   FT_Stroker_Rewind
 
242
   *
 
243
   * @description:
 
244
   *   Reset a stroker object without changing its attributes.
 
245
   *   You should call this function before beginning a new
 
246
   *   series of calls to @FT_Stroker_BeginSubPath or
 
247
   *   @FT_Stroker_EndSubPath.
 
248
   *
 
249
   * @input:
 
250
   *   stroker ::
 
251
   *     The target stroker handle.
 
252
   */
 
253
  FT_EXPORT( void )
 
254
  FT_Stroker_Rewind( FT_Stroker  stroker );
 
255
 
 
256
 
 
257
  /**************************************************************
 
258
   *
 
259
   * @function:
 
260
   *   FT_Stroker_ParseOutline
 
261
   *
 
262
   * @description:
 
263
   *   A convenience function used to parse a whole outline with
 
264
   *   the stroker.  The resulting outline(s) can be retrieved
 
265
   *   later by functions like @FT_Stroker_GetCounts and @FT_Stroker_Export.
 
266
   *
 
267
   * @input:
 
268
   *   stroker ::
 
269
   *     The target stroker handle.
 
270
   *
 
271
   *   outline ::
 
272
   *     The source outline.
 
273
   *
 
274
   *   opened ::
 
275
   *     A boolean.  If TRUE, the outline is treated as an open path
 
276
   *     instead of a closed one.
 
277
   *
 
278
   * @return:
 
279
   *   FreeType error code.  0 means success.
 
280
   *
 
281
   * @note:
 
282
   *   If `opened' is 0 (the default), the outline is treated as a closed
 
283
   *   path, and the stroker will generate two distinct `border' outlines.
 
284
   *
 
285
   *   If `opened' is 1, the outline is processed as an open path, and the
 
286
   *   stroker will generate a single `stroke' outline.
 
287
   *
 
288
   *   This function calls @FT_Stroker_Rewind automatically.
 
289
   */
 
290
  FT_EXPORT( FT_Error )
 
291
  FT_Stroker_ParseOutline( FT_Stroker   stroker,
 
292
                           FT_Outline*  outline,
 
293
                           FT_Bool      opened );
 
294
 
 
295
 
 
296
  /**************************************************************
 
297
   *
 
298
   * @function:
 
299
   *   FT_Stroker_BeginSubPath
 
300
   *
 
301
   * @description:
 
302
   *   Start a new sub-path in the stroker.
 
303
   *
 
304
   * @input:
 
305
   *   stroker ::
 
306
   *     The target stroker handle.
 
307
   *
 
308
   *   to ::
 
309
   *     A pointer to the start vector.
 
310
   *
 
311
   *   open ::
 
312
   *     A boolean.  If TRUE, the sub-path is treated as an open one.
 
313
   *
 
314
   * @return:
 
315
   *   FreeType error code.  0 means success.
 
316
   *
 
317
   * @note:
 
318
   *   This function is useful when you need to stroke a path that is
 
319
   *   not stored as a @FT_Outline object.
 
320
   */
 
321
  FT_EXPORT( FT_Error )
 
322
  FT_Stroker_BeginSubPath( FT_Stroker  stroker,
 
323
                           FT_Vector*  to,
 
324
                           FT_Bool     open );
 
325
 
 
326
 
 
327
  /**************************************************************
 
328
   *
 
329
   * @function:
 
330
   *   FT_Stroker_EndSubPath
 
331
   *
 
332
   * @description:
 
333
   *   Close the current sub-path in the stroker.
 
334
   *
 
335
   * @input:
 
336
   *   stroker ::
 
337
   *     The target stroker handle.
 
338
   *
 
339
   * @return:
 
340
   *   FreeType error code.  0 means success.
 
341
   *
 
342
   * @note:
 
343
   *   You should call this function after @FT_Stroker_BeginSubPath.
 
344
   *   If the subpath was not `opened', this function will `draw' a
 
345
   *   single line segment to the start position when needed.
 
346
   */
 
347
  FT_EXPORT( FT_Error )
 
348
  FT_Stroker_EndSubPath( FT_Stroker  stroker );
 
349
 
 
350
 
 
351
  /**************************************************************
 
352
   *
 
353
   * @function:
 
354
   *   FT_Stroker_LineTo
 
355
   *
 
356
   * @description:
 
357
   *   `Draw' a single line segment in the stroker's current sub-path,
 
358
   *   from the last position.
 
359
   *
 
360
   * @input:
 
361
   *   stroker ::
 
362
   *     The target stroker handle.
 
363
   *
 
364
   *   to ::
 
365
   *     A pointer to the destination point.
 
366
   *
 
367
   * @return:
 
368
   *   FreeType error code.  0 means success.
 
369
   *
 
370
   * @note:
 
371
   *   You should call this function between @FT_Stroker_BeginSubPath and
 
372
   *   @FT_Stroker_EndSubPath.
 
373
   */
 
374
  FT_EXPORT( FT_Error )
 
375
  FT_Stroker_LineTo( FT_Stroker  stroker,
 
376
                     FT_Vector*  to );
 
377
 
 
378
 
 
379
  /**************************************************************
 
380
   *
 
381
   * @function:
 
382
   *   FT_Stroker_ConicTo
 
383
   *
 
384
   * @description:
 
385
   *   `Draw; a single quadratic bezier in the stroker's current sub-path,
 
386
   *   from the last position.
 
387
   *
 
388
   * @input:
 
389
   *   stroker ::
 
390
   *     The target stroker handle.
 
391
   *
 
392
   *   control ::
 
393
   *     A pointer to a Bļæ½zier control point.
 
394
   *
 
395
   *   to ::
 
396
   *     A pointer to the destination point.
 
397
   *
 
398
   * @return:
 
399
   *   FreeType error code.  0 means success.
 
400
   *
 
401
   * @note:
 
402
   *   You should call this function between @FT_Stroker_BeginSubPath and
 
403
   *   @FT_Stroker_EndSubPath.
 
404
   */
 
405
  FT_EXPORT( FT_Error )
 
406
  FT_Stroker_ConicTo( FT_Stroker  stroker,
 
407
                      FT_Vector*  control,
 
408
                      FT_Vector*  to );
 
409
 
 
410
 
 
411
  /**************************************************************
 
412
   *
 
413
   * @function:
 
414
   *   FT_Stroker_CubicTo
 
415
   *
 
416
   * @description:
 
417
   *   `Draw' a single cubic Bļæ½zier in the stroker's current sub-path,
 
418
   *   from the last position.
 
419
   *
 
420
   * @input:
 
421
   *   stroker ::
 
422
   *     The target stroker handle.
 
423
   *
 
424
   *   control1 ::
 
425
   *     A pointer to the first Bļæ½zier control point.
 
426
   *
 
427
   *   control2 ::
 
428
   *     A pointer to second Bļæ½zier control point.
 
429
   *
 
430
   *   to ::
 
431
   *     A pointer to the destination point.
 
432
   *
 
433
   * @return:
 
434
   *   FreeType error code.  0 means success.
 
435
   *
 
436
   * @note:
 
437
   *   You should call this function between @FT_Stroker_BeginSubPath and
 
438
   *   @FT_Stroker_EndSubPath.
 
439
   */
 
440
  FT_EXPORT( FT_Error )
 
441
  FT_Stroker_CubicTo( FT_Stroker  stroker,
 
442
                      FT_Vector*  control1,
 
443
                      FT_Vector*  control2,
 
444
                      FT_Vector*  to );
 
445
 
 
446
 
 
447
  /**************************************************************
 
448
   *
 
449
   * @function:
 
450
   *   FT_Stroker_GetBorderCounts
 
451
   *
 
452
   * @description:
 
453
   *   Vall this function once you have finished parsing your paths
 
454
   *   with the stroker.  It will return the number of points and
 
455
   *   contours necessary to export one of the `border' or `stroke'
 
456
   *   outlines generated by the stroker.
 
457
   *
 
458
   * @input:
 
459
   *   stroker ::
 
460
   *     The target stroker handle.
 
461
   *
 
462
   *   border ::
 
463
   *     The border index.
 
464
   *
 
465
   * @output:
 
466
   *   anum_points ::
 
467
   *     The number of points.
 
468
   *
 
469
   *   anum_contours ::
 
470
   *     The number of contours.
 
471
   *
 
472
   * @return:
 
473
   *   FreeType error code.  0 means success.
 
474
   *
 
475
   * @note:
 
476
   *   When an outline, or a sub-path, is `closed', the stroker generates
 
477
   *   two independent `border' outlines, named `left' and `right'.
 
478
   *
 
479
   *   When the outline, or a sub-path, is `opened', the stroker merges
 
480
   *   the `border' outlines with caps.  The `left' border receives all
 
481
   *   points, while the `right' border becomes empty.
 
482
   *
 
483
   *   Use the function @FT_Stroker_GetCounts instead if you want to
 
484
   *   retrieve the counts associated to both borders.
 
485
   */
 
486
  FT_EXPORT( FT_Error )
 
487
  FT_Stroker_GetBorderCounts( FT_Stroker        stroker,
 
488
                              FT_StrokerBorder  border,
 
489
                              FT_UInt          *anum_points,
 
490
                              FT_UInt          *anum_contours );
 
491
 
 
492
 
 
493
  /**************************************************************
 
494
   *
 
495
   * @function:
 
496
   *   FT_Stroker_ExportBorder
 
497
   *
 
498
   * @description:
 
499
   *   Call this function after @FT_Stroker_GetBorderCounts to
 
500
   *   export the corresponding border to your own @FT_Outline
 
501
   *   structure.
 
502
   *
 
503
   *   Note that this function will append the border points and
 
504
   *   contours to your outline, but will not try to resize its
 
505
   *   arrays.
 
506
   *
 
507
   * @input:
 
508
   *   stroker ::
 
509
   *     The target stroker handle.
 
510
   *
 
511
   *   border ::
 
512
   *     The border index.
 
513
   *
 
514
   *   outline ::
 
515
   *     The target outline handle.
 
516
   *
 
517
   * @note:
 
518
   *   Always call this function after @FT_Stroker_GetBorderCounts to
 
519
   *   get sure that there is enough room in your @FT_Outline object to
 
520
   *   receive all new data.
 
521
   *
 
522
   *   When an outline, or a sub-path, is `closed', the stroker generates
 
523
   *   two independent `border' outlines, named `left' and `right'
 
524
   *
 
525
   *   When the outline, or a sub-path, is `opened', the stroker merges
 
526
   *   the `border' outlines with caps. The `left' border receives all
 
527
   *   points, while the `right' border becomes empty.
 
528
   *
 
529
   *   Use the function @FT_Stroker_Export instead if you want to
 
530
   *   retrieve all borders at once.
 
531
   */
 
532
  FT_EXPORT( void )
 
533
  FT_Stroker_ExportBorder( FT_Stroker        stroker,
 
534
                           FT_StrokerBorder  border,
 
535
                           FT_Outline*       outline );
 
536
 
 
537
 
 
538
  /**************************************************************
 
539
   *
 
540
   * @function:
 
541
   *   FT_Stroker_GetCounts
 
542
   *
 
543
   * @description:
 
544
   *   Call this function once you have finished parsing your paths
 
545
   *   with the stroker.  It returns the number of points and
 
546
   *   contours necessary to export all points/borders from the stroked
 
547
   *   outline/path.
 
548
   *
 
549
   * @input:
 
550
   *   stroker ::
 
551
   *     The target stroker handle.
 
552
   *
 
553
   * @output:
 
554
   *   anum_points ::
 
555
   *     The number of points.
 
556
   *
 
557
   *   anum_contours ::
 
558
   *     The number of contours.
 
559
   *
 
560
   * @return:
 
561
   *   FreeType error code.  0 means success.
 
562
   */
 
563
  FT_EXPORT( FT_Error )
 
564
  FT_Stroker_GetCounts( FT_Stroker  stroker,
 
565
                        FT_UInt    *anum_points,
 
566
                        FT_UInt    *anum_contours );
 
567
 
 
568
 
 
569
  /**************************************************************
 
570
   *
 
571
   * @function:
 
572
   *   FT_Stroker_Export
 
573
   *
 
574
   * @description:
 
575
   *   Call this function after @FT_Stroker_GetBorderCounts to
 
576
   *   export the all borders to your own @FT_Outline structure.
 
577
   *
 
578
   *   Note that this function will append the border points and
 
579
   *   contours to your outline, but will not try to resize its
 
580
   *   arrays.
 
581
   *
 
582
   * @input:
 
583
   *   stroker ::
 
584
   *     The target stroker handle.
 
585
   *
 
586
   *   outline ::
 
587
   *     The target outline handle.
 
588
   */
 
589
  FT_EXPORT( void )
 
590
  FT_Stroker_Export( FT_Stroker   stroker,
 
591
                     FT_Outline*  outline );
 
592
 
 
593
 
 
594
  /**************************************************************
 
595
   *
 
596
   * @function:
 
597
   *   FT_Stroker_Done
 
598
   *
 
599
   * @description:
 
600
   *   Destroy a stroker object.
 
601
   *
 
602
   * @input:
 
603
   *   stroker ::
 
604
   *     A stroker handle.  Can be NULL.
 
605
   */
 
606
  FT_EXPORT( void )
 
607
  FT_Stroker_Done( FT_Stroker  stroker );
 
608
 
 
609
 
 
610
  /**************************************************************
 
611
   *
 
612
   * @function:
 
613
   *   FT_Glyph_Stroke
 
614
   *
 
615
   * @description:
 
616
   *   Stroke a given outline glyph object with a given stroker.
 
617
   *
 
618
   * @inout:
 
619
   *   pglyph :: Source glyph handle on input, new glyph handle
 
620
   *             on output.
 
621
   *
 
622
   * @input:
 
623
   *   stroker ::
 
624
   *     A stroker handle.
 
625
   *
 
626
   *   destroy ::
 
627
   *     A Boolean.  If TRUE, the source glyph object is destroyed
 
628
   *     on success.
 
629
   *
 
630
   * @return:
 
631
   *    FreeType error code.  0 means success.
 
632
   *
 
633
   * @note:
 
634
   *   The source glyph is untouched in case of error.
 
635
   */
 
636
  FT_EXPORT( FT_Error )
 
637
  FT_Glyph_Stroke( FT_Glyph    *pglyph,
 
638
                   FT_Stroker   stroker,
 
639
                   FT_Bool      destroy );
 
640
 
 
641
 
 
642
  /**************************************************************
 
643
   *
 
644
   * @function:
 
645
   *   FT_Glyph_StrokeBorder
 
646
   *
 
647
   * @description:
 
648
   *   Stroke a given outline glyph object with a given stroker, but
 
649
   *   only return either its inside or outside border.
 
650
   *
 
651
   * @inout:
 
652
   *   pglyph ::
 
653
   *     Source glyph handle on input, new glyph handle on output.
 
654
   *
 
655
   * @input:
 
656
   *   stroker ::
 
657
   *     A stroker handle.
 
658
   *
 
659
   *   inside ::
 
660
   *     A Boolean.  If TRUE, return the inside border, otherwise
 
661
   *     the outside border.
 
662
   *
 
663
   *   destroy ::
 
664
   *     A Boolean.  If TRUE, the source glyph object is destroyed
 
665
   *     on success.
 
666
   *
 
667
   * @return:
 
668
   *    FreeType error code.  0 means success.
 
669
   *
 
670
   * @note:
 
671
   *   The source glyph is untouched in case of error.
 
672
   */
 
673
  FT_EXPORT( FT_Error )
 
674
  FT_Glyph_StrokeBorder( FT_Glyph    *pglyph,
 
675
                         FT_Stroker   stroker,
 
676
                         FT_Bool      inside,
 
677
                         FT_Bool      destroy );
 
678
 
 
679
 /* */
 
680
 
 
681
FT_END_HEADER
 
682
 
 
683
#endif /* __FT_STROKE_H__ */
 
684
 
 
685
 
 
686
/* END */