Searched refs:font_matrix (Results 1 – 16 of 16) sorted by relevance
/AliOS-Things-master/components/freetype/src/type1/ |
A D | t1gload.c | 72 decoder->font_matrix = type1->font_matrix; in T1_Parse_Glyph_And_Get_Char_String() 283 FT_Matrix font_matrix; in T1_Load_Glyph() local 362 font_matrix = decoder.font_matrix; in T1_Load_Glyph() 390 internal->glyph_matrix = font_matrix; in T1_Load_Glyph() 430 if ( font_matrix.xx != 0x10000L || font_matrix.yy != font_matrix.xx || in T1_Load_Glyph() 431 font_matrix.xy != 0 || font_matrix.yx != 0 ) in T1_Load_Glyph() 432 FT_Outline_Transform( &t1glyph->outline, &font_matrix ); in T1_Load_Glyph() 441 FT_Vector_Transform( &advance, &font_matrix ); in T1_Load_Glyph() 445 FT_Vector_Transform( &advance, &font_matrix ); in T1_Load_Glyph()
|
A D | t1driver.c | 195 if ( idx < sizeof ( type1->font_matrix ) / in t1_ps_get_font_value() 196 sizeof ( type1->font_matrix.xx ) ) in t1_ps_get_font_value() 207 val = type1->font_matrix.xx; in t1_ps_get_font_value() 210 val = type1->font_matrix.xy; in t1_ps_get_font_value() 213 val = type1->font_matrix.yx; in t1_ps_get_font_value() 216 val = type1->font_matrix.yy; in t1_ps_get_font_value()
|
A D | t1load.c | 1098 FT_Matrix* matrix = &face->type1.font_matrix; in t1_parse_font_matrix()
|
/AliOS-Things-master/components/freetype/src/cid/ |
A D | cidgload.c | 147 decoder->font_matrix = dict->font_matrix; in cid_load_glyph() 281 FT_Matrix font_matrix; in cid_slot_load_glyph() local 328 font_matrix = decoder.font_matrix; in cid_slot_load_glyph() 352 internal->glyph_matrix = font_matrix; in cid_slot_load_glyph() 381 FT_Outline_Transform( &cidglyph->outline, &font_matrix ); in cid_slot_load_glyph() 389 FT_Vector_Transform( &advance, &font_matrix ); in cid_slot_load_glyph() 394 FT_Vector_Transform( &advance, &font_matrix ); in cid_slot_load_glyph()
|
A D | cidload.c | 167 matrix = &dict->font_matrix; in cid_parse_font_matrix()
|
/AliOS-Things-master/components/freetype/src/pfr/ |
A D | pfrobjs.c | 412 FT_Matrix font_matrix; in pfr_slot_load() 415 font_matrix.xx = face->log_font.matrix[0] << 8; in pfr_slot_load() 416 font_matrix.yx = face->log_font.matrix[1] << 8; in pfr_slot_load() 417 font_matrix.xy = face->log_font.matrix[2] << 8; in pfr_slot_load() 418 font_matrix.yy = face->log_font.matrix[3] << 8; in pfr_slot_load() 420 FT_Outline_Transform( outline, &font_matrix ); in pfr_slot_load()
|
/AliOS-Things-master/components/freetype/src/cff/ |
A D | cffobjs.c | 641 FT_Matrix* matrix = &dict->font_matrix; in cff_face_init() 689 FT_Matrix_Multiply_Scaled( &top->font_matrix, in cff_face_init() 690 &sub->font_matrix, in cff_face_init() 693 &top->font_matrix, in cff_face_init() 703 sub->font_matrix = top->font_matrix; in cff_face_init() 709 matrix = &sub->font_matrix; in cff_face_init()
|
A D | cffgload.c | 2615 FT_Matrix font_matrix; in cff_slot_load() local 2773 font_matrix = cff->subfonts[fd_index]->font_dict.font_matrix; in cff_slot_load() 2786 font_matrix = cff->top_font.font_dict.font_matrix; in cff_slot_load() 2940 internal->glyph_matrix = font_matrix; in cff_slot_load() 2995 if ( !( font_matrix.xx == 0x10000L && in cff_slot_load() 2996 font_matrix.yy == 0x10000L && in cff_slot_load() 2997 font_matrix.xy == 0 && in cff_slot_load() 2998 font_matrix.yx == 0 ) ) in cff_slot_load() 2999 FT_Outline_Transform( &glyph->root.outline, &font_matrix ); in cff_slot_load() 3008 FT_Vector_Transform( &advance, &font_matrix ); in cff_slot_load() [all …]
|
A D | cfftoken.h | 37 CFF_FIELD_CALLBACK( 0x107, font_matrix, "FontMatrix" )
|
A D | cfftypes.h | 119 FT_Matrix font_matrix; member
|
A D | cffload.c | 1327 top->font_matrix.xx = 0x10000L; in cff_subfont_load() 1328 top->font_matrix.yy = 0x10000L; in cff_subfont_load()
|
A D | cffparse.c | 510 FT_Matrix* matrix = &dict->font_matrix; in cff_parse_font_matrix()
|
/AliOS-Things-master/components/freetype/include/internal/ |
A D | t1types.h | 118 FT_Matrix font_matrix; member
|
A D | psaux.h | 682 FT_Matrix font_matrix; member
|
/AliOS-Things-master/components/freetype/include/ |
A D | t1tables.h | 316 FT_Matrix font_matrix; member
|
/AliOS-Things-master/components/freetype/src/type42/ |
A D | t42parse.c | 253 FT_Matrix* matrix = &face->type1.font_matrix; in t42_parse_font_matrix()
|
Completed in 30 milliseconds