summaryrefslogtreecommitdiff
path: root/src/image.c
diff options
context:
space:
mode:
authorPo Lu <luangruo@yahoo.com>2022-05-08 04:42:11 +0000
committerPo Lu <luangruo@yahoo.com>2022-05-08 04:42:11 +0000
commitb205d67f8c92593f8e170419d677a70e535a3a19 (patch)
treefe40a61bb0a5af50d20821c37cead392d04b310f /src/image.c
parentfaa342c794dec66d6b77ccf550361d58455a4454 (diff)
downloademacs-b205d67f8c92593f8e170419d677a70e535a3a19.tar.gz
emacs-b205d67f8c92593f8e170419d677a70e535a3a19.tar.bz2
emacs-b205d67f8c92593f8e170419d677a70e535a3a19.zip
Fully implement stipples for text on Haiku
* src/haikufont.c (haikufont_draw): Use `haiku_draw_background_rect' instead. * src/haikuterm.c (haiku_draw_plain_background): Change arguments to accept rect manually. (haiku_get_bitmap): Delete function. (haiku_get_bitmap_rec): New function. (haiku_draw_stipple_background): Accept rect instead of box sizes. (haiku_draw_background_rect): New function. (haiku_maybe_draw_background): Use that instead. (haiku_draw_image_glyph_string): Add notice. (haiku_draw_glyph_string): Set `stippled_p' correctly. * src/haikuterm.h (struct haiku_bitmap_record): New fields for keeping track of stipple state. * src/image.c (image_create_bitmap_from_data) (image_create_bitmap_from_file, free_bitmap_record): Free and set them accordingly.
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c30
1 files changed, 24 insertions, 6 deletions
diff --git a/src/image.c b/src/image.c
index 757e1250066..f3b47f7cccb 100644
--- a/src/image.c
+++ b/src/image.c
@@ -542,20 +542,24 @@ image_create_bitmap_from_data (struct frame *f, char *bits,
#endif /* HAVE_PGTK */
#ifdef HAVE_HAIKU
- void *bitmap;
+ void *bitmap, *stipple;
int bytes_per_line, x, y;
- bitmap = BBitmap_new (width, height, 1);
+ bitmap = BBitmap_new (width, height, false);
if (!bitmap)
return -1;
bytes_per_line = (width + 7) / 8;
+ stipple = xmalloc (height * bytes_per_line);
+ memcpy (stipple, bits, height * bytes_per_line);
for (y = 0; y < height; y++)
{
for (x = 0; x < width; x++)
- PUT_PIXEL (bitmap, x, y, (bits[8] >> (x % 8)) & 1);
+ PUT_PIXEL (bitmap, x, y, ((bits[8] >> (x % 8)) & 1
+ ? f->foreground_pixel
+ : f->background_pixel));
bits += bytes_per_line;
}
#endif
@@ -577,6 +581,11 @@ image_create_bitmap_from_data (struct frame *f, char *bits,
#ifdef HAVE_HAIKU
dpyinfo->bitmaps[id - 1].img = bitmap;
dpyinfo->bitmaps[id - 1].depth = 1;
+ dpyinfo->bitmaps[id - 1].stipple_bits = stipple;
+ dpyinfo->bitmaps[id - 1].stipple_foreground
+ = f->foreground_pixel & 0xffffffff;
+ dpyinfo->bitmaps[id - 1].stipple_background
+ = f->background_pixel & 0xffffffff;
#endif
dpyinfo->bitmaps[id - 1].file = NULL;
@@ -731,7 +740,7 @@ image_create_bitmap_from_file (struct frame *f, Lisp_Object file)
return -1;
}
- bitmap = BBitmap_new (width, height, 1);
+ bitmap = BBitmap_new (width, height, false);
if (!bitmap)
{
@@ -748,6 +757,11 @@ image_create_bitmap_from_file (struct frame *f, Lisp_Object file)
dpyinfo->bitmaps[id - 1].height = height;
dpyinfo->bitmaps[id - 1].width = width;
dpyinfo->bitmaps[id - 1].refcount = 1;
+ dpyinfo->bitmaps[id - 1].stipple_foreground
+ = f->foreground_pixel & 0xffffffff;
+ dpyinfo->bitmaps[id - 1].stipple_background
+ = f->background_pixel & 0xffffffff;
+ dpyinfo->bitmaps[id - 1].stipple_bits = data;
bytes_per_line = (width + 7) / 8;
tmp = data;
@@ -755,13 +769,14 @@ image_create_bitmap_from_file (struct frame *f, Lisp_Object file)
for (y = 0; y < height; y++)
{
for (x = 0; x < width; x++)
- PUT_PIXEL (bitmap, x, y, (tmp[x / 8] >> (x % 8)) & 1);
+ PUT_PIXEL (bitmap, x, y, ((tmp[x / 8] >> (x % 8)) & 1
+ ? f->foreground_pixel
+ : f->background_pixel));
tmp += bytes_per_line;
}
xfree (contents);
- xfree (data);
return id;
#endif
}
@@ -796,6 +811,9 @@ free_bitmap_record (Display_Info *dpyinfo, Bitmap_Record *bm)
#ifdef HAVE_HAIKU
BBitmap_free (bm->img);
+
+ if (bm->stipple_bits)
+ xfree (bm->stipple_bits);
#endif
if (bm->file)