ソースを参照

* 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年前
コミット
f71113d6a6
1個のファイルの変更1行の追加0行の削除
  1. +1
    -0
      src/render.c

+ 1
- 0
src/render.c ファイルの表示

@@ -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]);



読み込み中…
キャンセル
保存