* 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:
parent
02b3c15dc9
commit
f71113d6a6
1 changed files with 1 additions and 0 deletions
|
@ -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]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue