예제 #1
0
파일: GlView.java 프로젝트: Thommil/KeskGL
 /**
  * Inform the view that the activity is paused. The owner of this view must call this method when
  * the activity is paused. Calling this method will pause the rendering thread. Must not be called
  * before a renderer has been set.
  */
 public void pause() {
   if (mGLThread != null) {
     mGLThread.onPause();
   }
 }