]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix fringe bitmap display on haiku again
authorPo Lu <luangruo@yahoo.com>
Tue, 4 Jan 2022 02:01:30 +0000 (02:01 +0000)
committerPo Lu <luangruo@yahoo.com>
Tue, 4 Jan 2022 02:01:30 +0000 (02:01 +0000)
* src/haiku_draw_support.cc (BView_DrawBitmapWithEraseOp): Fix
off-by-one errors.

src/haiku_draw_support.cc

index b0bc786ccfa1255c4e3502177ef680ee7f016cf7..76a5d2e59c7bde8c09f8c4cc2f01ffc9f494c7aa 100644 (file)
@@ -310,9 +310,9 @@ BView_DrawBitmapWithEraseOp (void *view, void *bitmap, int x,
   if (bm->ColorSpace () == B_GRAY1)
     {
       rgb_color low_color = vw->LowColor ();
-      for (int y = 0; y <= bc.Bounds ().Height () + 1; ++y)
+      for (int y = 0; y <= bc.Bounds ().Height (); ++y)
        {
-         for (int x = 0; x <= bc.Bounds ().Width () + 1; ++x)
+         for (int x = 0; x <= bc.Bounds ().Width (); ++x)
            {
              if (bits[y * (stride / 4) + x] == 0xFF000000)
                bits[y * (stride / 4) + x] = RGB_COLOR_UINT32 (low_color);