]> git.eshelyaron.com Git - emacs.git/commitdiff
Update Android port
authorPo Lu <luangruo@yahoo.com>
Sat, 20 May 2023 02:26:28 +0000 (10:26 +0800)
committerPo Lu <luangruo@yahoo.com>
Sat, 20 May 2023 02:26:28 +0000 (10:26 +0800)
* java/org/gnu/emacs/EmacsView.java (swapBuffers): Restore
missing damage rect code.
(onDetachedFromWindow): Remove redundant synchronization.

java/org/gnu/emacs/EmacsView.java

index 10c1af9e19a3ca98f53fbeaccf784334faa1ad39..124ea5301bb835d419ad9f8252758608486ddd42 100644 (file)
@@ -356,16 +356,23 @@ public final class EmacsView extends ViewGroup
 
     damageRect = null;
 
+    /* Now see if there is a damage region.  */
+
     synchronized (damageRegion)
       {
        if (damageRegion.isEmpty ())
          return;
 
+       /* And extract and clear the damage region.  */
+
+       damageRect = damageRegion.getBounds ();
+       damageRegion.setEmpty ();
+
        bitmap = getBitmap ();
 
        /* Transfer the bitmap to the surface view, then invalidate
           it.  */
-        surfaceView.setBitmap (bitmap, damageRect);
+       surfaceView.setBitmap (bitmap, damageRect);
       }
   }
 
@@ -545,20 +552,17 @@ public final class EmacsView extends ViewGroup
   {
     isAttachedToWindow = false;
 
-    synchronized (this)
-      {
-       /* Recycle the bitmap and call GC.  */
+    /* Recycle the bitmap and call GC.  */
 
-       if (bitmap != null)
-         bitmap.recycle ();
+    if (bitmap != null)
+      bitmap.recycle ();
 
-       bitmap = null;
-       canvas = null;
-       surfaceView.setBitmap (null, null);
+    bitmap = null;
+    canvas = null;
+    surfaceView.setBitmap (null, null);
 
-       /* Collect the bitmap storage; it could be large.  */
-       Runtime.getRuntime ().gc ();
-      }
+    /* Collect the bitmap storage; it could be large.  */
+    Runtime.getRuntime ().gc ();
 
     super.onDetachedFromWindow ();
   }