Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Side by Side Diff: include/freetype/internal/ftpic.h

Issue 23555005: Update freetype to the latest version of Android external/freetype (Closed) Base URL: https://chromium.googlesource.com/chromium/src/third_party/freetype.git@master
Patch Set: Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « include/freetype/internal/ftobjs.h ('k') | include/freetype/internal/ftrfork.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /***************************************************************************/ 1 /***************************************************************************/
2 /* */ 2 /* */
3 /* ftpic.h */ 3 /* ftpic.h */
4 /* */ 4 /* */
5 /* The FreeType position independent code services (declaration). */ 5 /* The FreeType position independent code services (declaration). */
6 /* */ 6 /* */
7 /* Copyright 2009 by */ 7 /* Copyright 2009 by */
8 /* Oran Agra and Mickey Gabel. */ 8 /* Oran Agra and Mickey Gabel. */
9 /* */ 9 /* */
10 /* This file is part of the FreeType project, and may only be used, */ 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 */ 11 /* modified, and distributed under the terms of the FreeType project */
12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */ 12 /* license, LICENSE.TXT. By continuing to use, modify, or distribute */
13 /* this file you indicate that you have read the license and */ 13 /* this file you indicate that you have read the license and */
14 /* understand and accept it fully. */ 14 /* understand and accept it fully. */
15 /* */ 15 /* */
16 /***************************************************************************/ 16 /***************************************************************************/
17 17
18 /*************************************************************************/ 18 /*************************************************************************/
19 /* */ 19 /* */
20 /* Modules that ordinarily have const global data that need address */ 20 /* Modules that ordinarily have const global data that need address */
21 /* can instead define pointers here. */ 21 /* can instead define pointers here. */
22 /* */ 22 /* */
23 /*************************************************************************/ 23 /*************************************************************************/
24 24
25 25
26 #ifndef __FTPIC_H__ 26 #ifndef __FTPIC_H__
27 #define __FTPIC_H__ 27 #define __FTPIC_H__
28 28
29 29
30 FT_BEGIN_HEADER 30 FT_BEGIN_HEADER
31 31
32 #ifdef FT_CONFIG_OPTION_PIC 32 #ifdef FT_CONFIG_OPTION_PIC
33 33
34 typedef struct FT_PIC_Container_ 34 typedef struct FT_PIC_Container_
35 { 35 {
36 /* pic containers for base */ 36 /* pic containers for base */
37 void* base; 37 void* base;
38 /* pic containers for modules */ 38 /* pic containers for modules */
39 void* autofit; 39 void* autofit;
40 void* cff; 40 void* cff;
41 void* pshinter; 41 void* pshinter;
42 void* psnames; 42 void* psnames;
43 void* raster; 43 void* raster;
44 void* sfnt; 44 void* sfnt;
45 void* smooth; 45 void* smooth;
46 void* truetype; 46 void* truetype;
47 } FT_PIC_Container; 47 } FT_PIC_Container;
48 48
49 /* Initialize the various function tables, structs, etc. stored in the contain er. */ 49 /* Initialize the various function tables, structs, etc. stored in the contain er. */
50 FT_BASE( FT_Error ) 50 FT_BASE( FT_Error )
51 ft_pic_container_init( FT_Library library ); 51 ft_pic_container_init( FT_Library library );
52 52
53 53
54 /* Destroy the contents of the container. */ 54 /* Destroy the contents of the container. */
55 FT_BASE( void ) 55 FT_BASE( void )
56 ft_pic_container_destroy( FT_Library library ); 56 ft_pic_container_destroy( FT_Library library );
57 57
58 #endif /* FT_CONFIG_OPTION_PIC */ 58 #endif /* FT_CONFIG_OPTION_PIC */
59 59
60 /* */ 60 /* */
61 61
62 FT_END_HEADER 62 FT_END_HEADER
63 63
64 #endif /* __FTPIC_H__ */ 64 #endif /* __FTPIC_H__ */
65 65
66 66
67 /* END */ 67 /* END */
OLDNEW
« no previous file with comments | « include/freetype/internal/ftobjs.h ('k') | include/freetype/internal/ftrfork.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698