Home
last modified time | relevance | path

Searched refs:new_glyphs (Results 1 – 7 of 7) sorted by relevance

/dports/games/lgeneral/lgeneral-1.3.2/src/
H A Dlg-sdl.c272 SDL_Surface *new_glyphs; in font_load_glyphs() local
276 if ((new_glyphs = load_surf(path, SDL_SWSURFACE)) == 0) { in font_load_glyphs()
281 transparency_key = get_pixel( new_glyphs, 0, 0 ); in font_load_glyphs()
284 …SDL_GetRGB(get_pixel( new_glyphs, 0, new_glyphs->h - 1 ), new_glyphs->format, &start_code, &reserv… in font_load_glyphs()
294 font->height = new_glyphs->h; in font_load_glyphs()
311 for (i = 0; i < new_glyphs->w; i++) { in font_load_glyphs()
314 …SDL_GetRGB(get_pixel(new_glyphs, i, new_glyphs->h - 1), new_glyphs->format, AT_RGB(pixel, R_INDEX)… in font_load_glyphs()
324 set_pixel(new_glyphs, i, new_glyphs->h - 1, transparency_key); in font_load_glyphs()
341 dest = create_surf(pre_width + new_glyphs->w + post_width, in font_load_glyphs()
363 FULL_SOURCE(new_glyphs); in font_load_glyphs()
[all …]
/dports/games/stonesoup/crawl-0.27.1/crawl-ref/source/
H A Ddgn-irregular-box.cc479 vector<vector<char> > new_glyphs; in make_irregular_box() local
487 new_glyphs.assign(size_x, vector<char>(size_y, UNSET_GLYPH)); in make_irregular_box()
580 _draw_wall_t(new_glyphs, wall_cells, di_t, in_t, wall_glyph); in make_irregular_box()
581 _draw_wall_b(new_glyphs, wall_cells, di_b, in_b, wall_glyph, size_y); in make_irregular_box()
582 _draw_wall_l(new_glyphs, wall_cells, di_l, in_l, wall_glyph); in make_irregular_box()
601 _flood_fill(new_glyphs, in_l[0] + 1, in_t[0] + 1, in make_irregular_box()
603 _fill_outside(new_glyphs, UNSET_GLYPH, OUTSIDE_GLYPH); in make_irregular_box()
608 if (new_glyphs[x][y] == UNSET_GLYPH) in make_irregular_box()
625 if (new_glyphs[x][y] == UNSET_GLYPH) in make_irregular_box()
627 else if (new_glyphs[x][y] != OUTSIDE_GLYPH) in make_irregular_box()
[all …]
H A Dl-dgnbld.cc1122 new_glyphs[x][y] = WALL; in LUAFN()
1132 if (new_glyphs[x][y] == WALL in LUAFN()
1135 && new_glyphs[x - 1][y - 1] != OUTSIDE in LUAFN()
1136 && new_glyphs[x ][y - 1] != OUTSIDE in LUAFN()
1137 && new_glyphs[x + 1][y - 1] != OUTSIDE in LUAFN()
1138 && new_glyphs[x - 1][y ] != OUTSIDE in LUAFN()
1139 && new_glyphs[x + 1][y ] != OUTSIDE in LUAFN()
1144 new_glyphs[x][y] = FLOOR; in LUAFN()
1152 if (new_glyphs[x][y] == WALL) in LUAFN()
1242 new_glyphs[pos.x][pos.y] = DOOR; in LUAFN()
[all …]
/dports/www/geckodriver/mozilla-central-e9783a644016aa9b317887076618425586730d73/testing/geckodriver/cargo-crates/webrender-0.60.0/src/glyph_rasterizer/
H A Dno_pathfinder.rs54 let mut new_glyphs = Vec::new(); in request_glyphs() localVariable
78 new_glyphs.push((*key).clone()); in request_glyphs()
83 new_glyphs.push((*key).clone()); in request_glyphs()
88 if new_glyphs.is_empty() { in request_glyphs()
94 self.request_glyphs_from_backend(font, new_glyphs); in request_glyphs()
/dports/lang/spidermonkey78/firefox-78.9.0/gfx/wr/webrender/src/glyph_rasterizer/
H A Dmod.rs77 let mut new_glyphs = Vec::new(); in request_glyphs() localVariable
98 new_glyphs.push(key.clone()); in request_glyphs()
102 if new_glyphs.is_empty() { in request_glyphs()
108 self.request_glyphs_from_backend(font, new_glyphs); in request_glyphs()
/dports/print/mftrace/mftrace-1.2.18/
H A Dmftrace.py1088 new_glyphs = []
1090 new_glyphs += r.split (',')
1091 options.glyphs = new_glyphs
/dports/x11-fonts/fcft/fcft/
H A Dfcft.c2398 const struct fcft_glyph **new_glyphs = realloc( in rasterize_partial_run() local
2399 run->public->glyphs, new_glyphs_size * sizeof(new_glyphs[0])); in rasterize_partial_run()
2403 if (new_glyphs == NULL || new_cluster == NULL) { in rasterize_partial_run()
2404 free(new_glyphs); in rasterize_partial_run()
2409 run->public->glyphs = new_glyphs; in rasterize_partial_run()