]> git.eshelyaron.com Git - emacs.git/commitdiff
Implement image transform smoothing on Haiku
authorPo Lu <luangruo@yahoo.com>
Sat, 25 Jun 2022 07:34:43 +0000 (07:34 +0000)
committerPo Lu <luangruo@yahoo.com>
Sat, 25 Jun 2022 07:35:45 +0000 (07:35 +0000)
* src/dispextern.h (struct image): New field
`use_bilinear_filtering'.
* src/haiku_draw_support.cc (BView_DrawBitmap): Accept it.
* src/haiku_support.h: Update prototypes.
* src/haikuterm.c (haiku_draw_image_glyph_string):
* src/image.c (image_set_transform): Set it.

src/dispextern.h
src/haiku_draw_support.cc
src/haiku_support.h
src/haikuterm.c
src/image.c

index 170641f1ba9250dd9b2bcc31f1fec116b40bb494..9dec8b7d129c6341035f8708307359286036a1c0 100644 (file)
@@ -3090,6 +3090,10 @@ struct image
 
   /* The original width and height of the image.  */
   int original_width, original_height;
+
+  /* Whether or not bilinear filtering should be used to "smooth" the
+     image.  */
+  bool use_bilinear_filtering;
 #endif
 
   /* Colors allocated for this image, if any.  Allocated via xmalloc.  */
index 768ffdabf82700c114be180cfd6b19c85c72b16f..e2025ed68d4c10d226daef79fb9c51bf72d6be10 100644 (file)
@@ -280,14 +280,19 @@ hsl_color_rgb (double h, double s, double l, uint32_t *rgb)
 void
 BView_DrawBitmap (void *view, void *bitmap, int x, int y,
                  int width, int height, int vx, int vy, int vwidth,
-                 int vheight)
+                 int vheight, bool use_bilinear_filtering)
 {
   BView *vw = get_view (view);
   BBitmap *bm = (BBitmap *) bitmap;
 
   vw->SetDrawingMode (B_OP_OVER);
-  vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1),
-                 BRect (vx, vy, vx + vwidth - 1, vy + vheight - 1));
+  if (!use_bilinear_filtering)
+    vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1),
+                   BRect (vx, vy, vx + vwidth - 1, vy + vheight - 1));
+  else
+    vw->DrawBitmap (bm, BRect (x, y, x + width - 1, y + height - 1),
+                   BRect (vx, vy, vx + vwidth - 1, vy + vheight - 1),
+                   B_FILTER_BITMAP_BILINEAR);
   vw->SetDrawingMode (B_OP_COPY);
 }
 
index fcdf6bcb1549592e79ad7854c3e43eeed19d967f..7585b62a0641349a257a63cc84b5b4f488afbd37 100644 (file)
@@ -558,7 +558,7 @@ extern void BView_StrokeLine (void *, int, int, int, int);
 extern void BView_CopyBits (void *, int, int, int, int, int, int, int, int);
 extern void BView_InvertRect (void *, int, int, int, int);
 extern void BView_DrawBitmap (void *, void *, int, int, int, int, int, int,
-                             int, int);
+                             int, int, bool);
 extern void BView_DrawBitmapWithEraseOp (void *, void *, int, int, int, int);
 extern void BView_DrawBitmapTiled (void *, void *, int, int,
                                   int, int, int, int, int, int);
index 7c307afa32e4bebcc7cbc3ea738dd4c3fd68c22d..f50f6b34bda33bfa03cb22cc37d440e520cf2eda 100644 (file)
@@ -1738,7 +1738,8 @@ haiku_draw_image_glyph_string (struct glyph_string *s)
                            s->img->original_height,
                            0, 0,
                            s->img->original_width,
-                           s->img->original_height);
+                           s->img->original_height,
+                           s->img->use_bilinear_filtering);
 
          if (mask)
            be_draw_image_mask (mask, view, 0, 0,
index 5e98945df506a372977450b47d324be170764957..fcf5e97b0b1e0b1b66bdf456106aa1717d50db14 100644 (file)
@@ -2563,6 +2563,7 @@ image_set_transform (struct frame *f, struct image *img)
 
   img->original_width = img->width;
   img->original_height = img->height;
+  img->use_bilinear_filtering = false;
 
   memcpy (&img->transform, identity, sizeof identity);
 #endif
@@ -2604,7 +2605,7 @@ image_set_transform (struct frame *f, struct image *img)
   /* Determine flipping.  */
   flip = !NILP (image_spec_value (img->spec, QCflip, NULL));
 
-# if defined USE_CAIRO || defined HAVE_XRENDER || defined HAVE_NS
+# if defined USE_CAIRO || defined HAVE_XRENDER || defined HAVE_NS || defined HAVE_HAIKU
   /* We want scale up operations to use a nearest neighbor filter to
      show real pixels instead of munging them, but scale down
      operations to use a blended filter, to avoid aliasing and the like.
@@ -2618,6 +2619,10 @@ image_set_transform (struct frame *f, struct image *img)
     smoothing = !NILP (s);
 # endif
 
+#ifdef HAVE_HAIKU
+  img->use_bilinear_filtering = smoothing;
+#endif
+
   /* Perform scale transformation.  */
 
   matrix3x3 matrix