Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4e3fadd0 authored by Android (Google) Code Review's avatar Android (Google) Code Review
Browse files

Merge change Ia4424950 into eclair

* changes:
  Fix stupid bug in GLThreadManager implementation.
parents 1edbc1a1 a4424950
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1281,8 +1281,8 @@ public class GLSurfaceView extends SurfaceView implements SurfaceHolder.Callback
        public void start(GLThread thread) throws InterruptedException {
            GLThread oldThread = null;
            synchronized(this) {
                mMostRecentGLThread = thread;
                oldThread = mMostRecentGLThread;
                mMostRecentGLThread = thread;
            }
            if (oldThread != null) {
                synchronized(oldThread) {