コード例 #1
0
 public synchronized void threadExiting(GLThread thread) {
   if (LOG_THREADS) {
     Log.i("GLThread", "exiting tid=" + thread.getId());
   }
   thread.mDone = true;
   if (mEglOwner == thread) {
     mEglOwner = null;
   }
   notifyAll();
 }