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

Side by Side Diff: src/truetype/ttpic.c

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 | « src/truetype/ttpic.h ('k') | src/truetype/ttpload.c » ('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 /* ttpic.c */ 3 /* ttpic.c */
4 /* */ 4 /* */
5 /* The FreeType position independent code services for truetype module. */ 5 /* The FreeType position independent code services for truetype module. */
6 /* */ 6 /* */
7 /* Copyright 2009, 2010 by */ 7 /* Copyright 2009, 2010 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 #include <ft2build.h> 19 #include <ft2build.h>
20 #include FT_FREETYPE_H 20 #include FT_FREETYPE_H
21 #include FT_INTERNAL_OBJECTS_H 21 #include FT_INTERNAL_OBJECTS_H
22 #include "ttpic.h" 22 #include "ttpic.h"
23 #include "tterrors.h"
23 24
24 #ifdef FT_CONFIG_OPTION_PIC 25 #ifdef FT_CONFIG_OPTION_PIC
25 26
26 /* forward declaration of PIC init functions from ttdriver.c */ 27 /* forward declaration of PIC init functions from ttdriver.c */
27 FT_Error FT_Create_Class_tt_services( FT_Library, FT_ServiceDescRec**); 28 FT_Error
28 void FT_Destroy_Class_tt_services( FT_Library, FT_ServiceDescRec*); 29 FT_Create_Class_tt_services( FT_Library library,
29 void FT_Init_Class_tt_service_gx_multi_masters(FT_Service_MultiMastersRec*); 30 FT_ServiceDescRec** output_class );
30 void FT_Init_Class_tt_service_truetype_glyf(FT_Service_TTGlyfRec*);
31 31
32 void 32 void
33 tt_driver_class_pic_free( FT_Library library ) 33 FT_Destroy_Class_tt_services( FT_Library library,
34 FT_ServiceDescRec* clazz );
35
36 void
37 FT_Init_Class_tt_service_gx_multi_masters(
38 FT_Service_MultiMastersRec* sv_mm );
39
40 void
41 FT_Init_Class_tt_service_truetype_glyf(
42 FT_Service_TTGlyfRec* sv_ttglyf );
43
44 void
45 tt_driver_class_pic_free( FT_Library library )
34 { 46 {
35 FT_PIC_Container* pic_container = &library->pic_container; 47 FT_PIC_Container* pic_container = &library->pic_container;
36 FT_Memory memory = library->memory; 48 FT_Memory memory = library->memory;
49
50
37 if ( pic_container->truetype ) 51 if ( pic_container->truetype )
38 { 52 {
39 TTModulePIC* container = (TTModulePIC*)pic_container->truetype; 53 TTModulePIC* container = (TTModulePIC*)pic_container->truetype;
40 if(container->tt_services) 54
41 FT_Destroy_Class_tt_services(library, container->tt_services); 55
56 if ( container->tt_services )
57 FT_Destroy_Class_tt_services( library, container->tt_services );
42 container->tt_services = NULL; 58 container->tt_services = NULL;
43 FT_FREE( container ); 59 FT_FREE( container );
44 pic_container->truetype = NULL; 60 pic_container->truetype = NULL;
45 } 61 }
46 } 62 }
47 63
48 64
49 FT_Error 65 FT_Error
50 tt_driver_class_pic_init( FT_Library library ) 66 tt_driver_class_pic_init( FT_Library library )
51 { 67 {
52 FT_PIC_Container* pic_container = &library->pic_container; 68 FT_PIC_Container* pic_container = &library->pic_container;
53 FT_Error error = TT_Err_Ok; 69 FT_Error error = TT_Err_Ok;
54 TTModulePIC* container; 70 TTModulePIC* container;
55 FT_Memory memory = library->memory; 71 FT_Memory memory = library->memory;
56 72
57 73
58 /* allocate pointer, clear and set global container pointer */ 74 /* allocate pointer, clear and set global container pointer */
59 if ( FT_ALLOC ( container, sizeof ( *container ) ) ) 75 if ( FT_ALLOC ( container, sizeof ( *container ) ) )
60 return error; 76 return error;
61 FT_MEM_SET( container, 0, sizeof(*container) ); 77 FT_MEM_SET( container, 0, sizeof ( *container ) );
62 pic_container->truetype = container; 78 pic_container->truetype = container;
63 79
64 /* initialize pointer table - this is how the module usually expects this da ta */ 80 /* initialize pointer table - this is how the module usually expects this da ta */
65 error = FT_Create_Class_tt_services(library, &container->tt_services); 81 error = FT_Create_Class_tt_services( library,
66 if(error) 82 &container->tt_services );
83 if ( error )
67 goto Exit; 84 goto Exit;
68 #ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT 85 #ifdef TT_CONFIG_OPTION_GX_VAR_SUPPORT
69 FT_Init_Class_tt_service_gx_multi_masters(&container->tt_service_gx_multi_ma sters); 86 FT_Init_Class_tt_service_gx_multi_masters(
87 &container->tt_service_gx_multi_masters );
70 #endif 88 #endif
71 FT_Init_Class_tt_service_truetype_glyf(&container->tt_service_truetype_glyf) ; 89 FT_Init_Class_tt_service_truetype_glyf(
90 &container->tt_service_truetype_glyf );
72 Exit: 91 Exit:
73 if(error) 92 if ( error )
74 tt_driver_class_pic_free(library); 93 tt_driver_class_pic_free( library );
75 return error; 94 return error;
76 } 95 }
77 96
78 #endif /* FT_CONFIG_OPTION_PIC */ 97 #endif /* FT_CONFIG_OPTION_PIC */
79 98
80 99
81 /* END */ 100 /* END */
OLDNEW
« no previous file with comments | « src/truetype/ttpic.h ('k') | src/truetype/ttpload.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698