Browse Source

* 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.
pull/1/head
Sam Hocevar sam 18 years ago
parent
commit
f71113d6a6
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      src/render.c

+ 1
- 0
src/render.c 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]);



Loading…
Cancel
Save