Home
last modified time | relevance | path

Searched refs:the_glyph (Results 1 – 5 of 5) sorted by relevance

/reactos/base/applications/mstsc/
H A Duimain.c239 struct bitmap * the_glyph; in ui_create_glyph() local
244 memset(the_glyph, 0, sizeof(struct bitmap)); in ui_create_glyph()
245 the_glyph->width = width; in ui_create_glyph()
246 the_glyph->height = height; in ui_create_glyph()
247 the_glyph->data = (uint8 *)glyph_data; in ui_create_glyph()
258 return the_glyph; in ui_create_glyph()
265 struct bitmap * the_glyph; in ui_destroy_glyph() local
267 the_glyph = glyph; in ui_destroy_glyph()
268 if (the_glyph != 0) in ui_destroy_glyph()
270 xfree(the_glyph->data); in ui_destroy_glyph()
[all …]
/reactos/modules/rosapps/applications/net/tsclient/rdesktop/uiports/
H A Dsvgawin.c1052 bitmap* the_glyph; in ui_create_glyph() local
1056 the_glyph->width = width; in ui_create_glyph()
1057 the_glyph->height = height; in ui_create_glyph()
1064 return the_glyph; in ui_create_glyph()
1070 bitmap* the_glyph; in ui_destroy_glyph() local
1072 the_glyph = (bitmap*)glyph; in ui_destroy_glyph()
1073 if (the_glyph != NULL) in ui_destroy_glyph()
1077 xfree(the_glyph); in ui_destroy_glyph()
1162 bitmap* the_glyph; in draw_glyph() local
1166 if (the_glyph == NULL) in draw_glyph()
[all …]
H A Dqtewin.cpp1408 struct bitmap* the_glyph; in ui_create_glyph() local
1412 the_glyph->w = width; in ui_create_glyph()
1413 the_glyph->h = height; in ui_create_glyph()
1420 return the_glyph; in ui_create_glyph()
1426 struct bitmap* the_glyph; in ui_destroy_glyph() local
1429 if (the_glyph != NULL) in ui_destroy_glyph()
1432 xfree(the_glyph->data); in ui_destroy_glyph()
1433 xfree(the_glyph); in ui_destroy_glyph()
1945 struct bitmap *the_glyph; in draw_glyph() local
1949 if (the_glyph == NULL) in draw_glyph()
[all …]
/reactos/sdk/lib/3rdparty/freetype/src/base/
H A Dftglyph.c527 FT_Glyph_To_Bitmap( FT_Glyph* the_glyph, in FT_Glyph_To_Bitmap() argument
544 if ( !the_glyph ) in FT_Glyph_To_Bitmap()
546 glyph = *the_glyph; in FT_Glyph_To_Bitmap()
616 *the_glyph = FT_GLYPH( bitmap ); in FT_Glyph_To_Bitmap()
/reactos/sdk/lib/3rdparty/freetype/include/freetype/
H A Dftglyph.h525 FT_Glyph_To_Bitmap( FT_Glyph* the_glyph,