GLSurfaceView提供了下列特性:
1> 管理一个surface,这个surface就是一块特殊的内存,能直接排版到android的视图view上。
2> 管理一个EGL display,它能让opengl把内容渲染到上述的surface上。
3> 用户自定义渲染器(render)。
4> 让渲染器在独立的线程里运作,和UI线程分离。
5> 支持按需渲染(on-demand)和连续渲染(continuous)。
6> 一些可选工具,如调试。
概念:
Display(EGLDisplay) 是对实际显示设备的抽象。
Surface(EGLSurface)是对用来存储图像的内存区域FrameBuffer的抽象,包括Color Buffer, Stencil Buffer ,Depth Buffer.
Context (EGLContext) 存储OpenGL ES绘图的一些状态信息。
步骤:
获取EGLDisplay对象
初始化与EGLDisplay 之间的连接。
获取EGLConfig对象
创建EGLContext 实例
创建EGLSurface实例
连接EGLContext和EGLSurface.
使用GL指令绘制图形
断开并释放与EGLSurface关联的EGLContext对象
删除EGLSurface对象
删除EGLContext对象
终止与EGLDisplay之间的连接。
GLSurfaceView的绘制流程
由上图可知,GLSurfaceView的主要绘制过程都是在一个子线程中完成,即整个绘制最终都是guardenRun()中完成。在这个过程中完成了整个EGL绘制的所有步骤。
我把guardenRun()的大多数细节代码都删掉了,剩下一些精华:
private void guardedRun() throws InterruptedException { while (true) { synchronized (sGLThreadManager) { while (true) { // Ready to draw? if (readyToDraw()) { // If we don't have an EGL context, try to acquire one. if (! mHaveEglContext) { if (sGLThreadManager.tryAcquireEglContextLocked(this)) { mEglHelper.start(); } } sGLThreadManager.wait(); } } // end of synchronized(sGLThreadManager) if (createEglSurface) { if (mEglHelper.createSurface()) { ... } } if (createGlInterface) { gl = (GL10) mEglHelper.createGL(); } if (createEglContext) { if (view != null) { view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig); } } if (sizeChanged) { if (view != null) { view.mRenderer.onSurfaceChanged(gl, w, h); } sizeChanged = false; } if (view != null) { view.mRenderer.onDrawFrame(gl); } int swapError = mEglHelper.swap(); }
其中mEglHelper.start():
public void start() { /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); mEglConfig = view.mEGLConfigChooser.chooseConfig(mEgl, mEglDisplay); /* * Create an EGL context. We want to do this as rarely as we can, because an * EGL context is a somewhat heavy object. */ mEglContext = view.mEGLContextFactory.createContext(mEgl, mEglDisplay, mEglConfig); }
mEglHelper.start()就完成了4步:
1,获取EGLDisplay对象
2,初始化与EGLDisplay 之间的连接。
3,获取EGLConfig对象
4,创建EGLContext 实例
请注意注解中提到createContext()创建的mEglContext是一个重量级对象,在创建的时候很耗资源,我们尽可能少的创建它。所以,在guardenRun()中我们做了对mEglContext的是否存在的判断:
if (! mHaveEglContext) { if (sGLThreadManager.tryAcquireEglContextLocked(this)) { mEglHelper.start(); } }
接下来createSurface()
/** * Create an egl surface for the current SurfaceHolder surface. If a surface * already exists, destroy it before creating the new surface. * * @return true if the surface was created successfully. */ public boolean createSurface() { if (view != null) { mEglSurface = view.mEGLWindowSurfaceFactory.createWindowSurface(mEgl, mEglDisplay, mEglConfig, view.getHolder()); } /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ if (!mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext)) { /* * Could not make the context current, probably because the underlying * SurfaceView surface has been destroyed. */ return false; } return true; }这里主要完成了两件事:
5,创建mEglSurface,这个代表了将要被渲染的那段内存。请注意到createWindowSurface()的四个参数,尤其是最后一个参数view.getHolder()。
createSurface()上面有一句注解:Create an egl surface for the current SurfaceHolder surface.这个只能意会,很难言传。我理解是被渲染后的mEglSurface也是为了给mSurface来呈现的。总之mEglSurface和mSurface之间一定有着很重要的关系的,在一定程度上你也可以理解他们代表着同一块用来渲染的内存。
6,连接EGLContext和EGLSurface:eglMakeCurrent()。
7,使用GL指令绘制图形
<span style="white-space:pre"> </span> if (createGlInterface) { gl = (GL10) mEglHelper.createGL(); } if (createEglContext) { if (view != null) { view.mRenderer.onSurfaceCreated(gl, mEglHelper.mEglConfig); } } if (sizeChanged) { if (view != null) { view.mRenderer.onSurfaceChanged(gl, w, h); } sizeChanged = false; } if (view != null) { view.mRenderer.onDrawFrame(gl); }所以在实现Render看到的GL10 gl,就是从这里传过来的。
在整个guardenRun()过程中,你应该要发现一个很重要的点,这是一个无限循环的程序,而onDrawFrame(gl)几乎是没有设置任何障碍就可以每次循环都被触发。而onDrawFrame(gl)的实现正是整个渲染的主体部分,由Render的子类来实现。
后面几个步骤就不一一讲诉了
8,断开并释放与EGLSurface关联的EGLContext对象
9,删除EGLSurface对象
10,删除EGLContext对象
11,终止与EGLDisplay之间的连接。
在使用GlSurfaceView的时候,通常会继承GLSurfaceView,并重载一些和用户输入事件有关的方法。如果你不需要重载事件方法,GLSurfaceView也可以直接使用, 你可以使用set方法来为该类提供自定义的行为。
说到这里,我就上一个最简化的demo:
public class MainActivity extends Activity { private MyGLSurfaceView mGLView; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mGLView = new MyGLSurfaceView(this); mGLView.setRenderer(new ClearRenderer()); setContentView(mGLView); } @Override protected void onPause() { super.onPause(); mGLView.onPause(); } @Override protected void onResume() { super.onResume(); mGLView.onResume(); } class ClearRenderer implements MyGLSurfaceView.Renderer { @Override public void onSurfaceCreated(GL10 gl, javax.microedition.khronos.egl.EGLConfig config) { } public void onSurfaceChanged (GL10 gl, int w, int h) { gl.glViewport(0, 0, w, h); } public void onDrawFrame(GL10 gl) { gl.glClearColor(mRed, mGreen, mBlue, 1.0f); gl.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT); } } }
GLSurfaceView的绘制过程要点
1,GLSurfaceview的渲染模式RenderMode
在onAttachedToWindow后就启动了一个无线循环的子线程,该子线程完成了整个绘制流程,并系统默认是负责不断刷新重绘,刷新的帧率是16FPS。从这里也可以看出来,GLSurfaceView系统默认是60ms就重绘一次,这样的耗性能的重绘操作一定是要用在那种有持续动画的效果才有意义。
当然,你也可以通过设置setRenderMode去设置主动刷新:
/** * Set the rendering mode. When renderMode is * RENDERMODE_CONTINUOUSLY, the renderer is called * repeatedly to re-render the scene. When renderMode * is RENDERMODE_WHEN_DIRTY, the renderer only rendered when the surface * is created, or when {@link #requestRender} is called. Defaults to RENDERMODE_CONTINUOUSLY. * <p> * Using RENDERMODE_WHEN_DIRTY can improve battery life and overall system performance * by allowing the GPU and CPU to idle when the view does not need to be updated. * <p> * This method can only be called after {@link #setRenderer(Renderer)} * * @param renderMode one of the RENDERMODE_X constants * @see #RENDERMODE_CONTINUOUSLY * @see #RENDERMODE_WHEN_DIRTY */ public void setRenderMode(int renderMode) { mGLThread.setRenderMode(renderMode); }注解中提到:系统默认mode==RENDERMODE_CONTINUOUSLY,这样系统会自动重绘;mode==RENDERMODE_WHEN_DIRTY时,只有surfaceCreate的时候会绘制一次,然后就需要通过requestRender()方法主动请求重绘。同时也提到,如果你的界面不需要频繁的刷新最好是设置成RENDERMODE_WHEN_DIRTY,这样可以降低CPU和GPU的活动,可以省电。
2,事件处理
为了处理事件,一般都是继承GLSurfaceView类并重载它的事件方法。但是由于GLSurfaceView是多线程操作,所以需要一些特殊的处理。由于渲染器在独立的渲染线程里,你应该使用Java的跨线程机制跟渲染器通讯。queueEvent(Runnable)方法就是一种相对简单的操作。
class MyGLSurfaceView extends GLSurfaceView { private MyRenderer mMyRenderer; public void start() { mMyRenderer = ...; setRenderer(mMyRenderer); } public boolean onKeyDown(int keyCode, KeyEvent event) { if (keyCode == KeyEvent.KEYCODE_DPAD_CENTER) { queueEvent(new Runnable() { // 这个方法会在渲染线程里被调用 public void run() { mMyRenderer.handleDpadCenter(); }}); return true; } return super.onKeyDown(keyCode, event); } } }
调用queueEvent就是给队列中添加runnable
public void queueEvent(Runnable r) { synchronized(sGLThreadManager) { mEventQueue.add(r); sGLThreadManager.notifyAll(); } }
在guardenRun()中有如下代码:
<span> </span>if (! mEventQueue.isEmpty()) { event = mEventQueue.remove(0); break; } ... if (event != null) { event.run(); event = null; continue; }因为每次都会remove掉添加的runnable,所以上面那个demo就是非常好的解释,每次按键就是添加runnable。当然,这也是要求绘制是一直在循环重绘的状态才能看到效果。
(注:如果在UI线程里调用渲染器的方法,很容易收到“call to OpenGL ES API with no current context”的警告,典型的误区就是在键盘或鼠标事件方法里直接调用opengl es的API,因为UI事件和渲染绘制在不同的线程里。更甚者,这种情况下调用glDeleteBuffers这种释放资源的方法,可能引起程序的崩溃,因为UI线程想释放它,渲染线程却要使用它。)
关于GLSurfaceView的渲染过程的重要知识点已经介绍完毕,了解这些对开发当然是很有用的,很多时候你需要实现自定义的类GLSurfaceView的类。
那么现在,最后剩下的就是onDrawFrame(GL10 gl)的主体绘制的实现,这也是最重要的一个部分,因为涉及的内容较多,就不在这里陈述了。这里使用的就是opengl的绘制引擎进行渲染操作,跟之前View的渲染是使用的Skia渲染引擎。
还记得View的绘制onDraw(Canvas canvas)吗,对比onDrawFrame(GL10 gl),我想你该知道区别了。一个使用Skia引擎渲染,一个使用opengl引擎渲染。
问题:
1,GLSurfaceView继承了SurfaceView,它自己的mEglSurface和从父类继承的mSurface之间的关系?
但是呢,
mEglSurface = view.mEGLWindowSurfaceFactory.createWindowSurface(mEgl, mEglDisplay, mEglConfig, view.getHolder());mEglSurface在创建的时候,是有view.getHolder作为输入的,我们知道SurfaceHolder是持有Surface的。我一直跟踪到android_opengl_EGL14.cpp和com_google_android_gles_jni_EGLImpl.cpp 发现:surface总是作为一种输入后再加上其他参数,才能返回mEglSurface。我就开始怀疑他们是不是同一个surface,他们是不是指向了同一快内存地址?
为了验证我的这个想法,于是我打印了mSurface和mEglSurface的地址,发现他们却不是同一块地址。这就让人深思了,现在的情况只能说明,他们两个一定有关系,但是又不是指向同一块地址。对这方面有经验的朋友欢迎指导。