瀏覽代碼

* Set the default dithering mode to Floyd-Steinberg.

tags/v0.99.beta14
Sam Hocevar sam 18 年之前
父節點
當前提交
7f5fb19a39
共有 1 個文件被更改,包括 5 次插入0 次删除
  1. +5
    -0
      cucul/bitmap.c

+ 5
- 0
cucul/bitmap.c 查看文件

@@ -314,6 +314,11 @@ struct cucul_bitmap *cucul_create_bitmap(unsigned int bpp, unsigned int w,
bitmap->glyphs = ascii_glyphs;
bitmap->glyph_count = sizeof(ascii_glyphs) / sizeof(*ascii_glyphs);

/* Default dithering mode */
bitmap->init_dither = init_fstein_dither;
bitmap->get_dither = get_fstein_dither;
bitmap->increment_dither = increment_fstein_dither;

return bitmap;
}



Loading…
取消
儲存