* Fix libcucul font rendering. Now that the default canvas has a

transparent background, we need to explicitely draw our temporary string
    in white on black.
This commit is contained in:
Sam Hocevar 2006-09-26 21:51:13 +00:00 committed by sam
parent 02b3c15dc9
commit f71113d6a6

View file

@ -34,6 +34,7 @@ cucul_canvas_t *render_big(uint32_t const *string, unsigned int length)
unsigned int w, h, x, y, miny, maxy;
cv = cucul_create_canvas(length, 1);
cucul_set_color(cv, CUCUL_COLOR_WHITE, CUCUL_COLOR_BLACK);
for(x = 0; x < length; x++)
cucul_putchar(cv, x, 0, string[x]);