android学习笔记之3D--(03)-Renderer类 渲染类

 

public static interface

GLSurfaceView.Renderer

android.opengl.GLSurfaceView.Renderer

Class Overview

A generic renderer interface.

是一个一般的渲染类接口

 

The renderer is responsible for making OpenGL calls to render a frame.

这个renderer类负责 让OpenGL调用去渲染一个框架。

 

GLSurfaceView clients typically create their own classes that implement this interface, and then callsetRenderer(GLSurfaceView.Renderer) to register the renderer with the GLSurfaceView.

通常使用GLSurfaceView的客户都会通过调用这个“renderer”类接口去创建他们自己的对象。同时也会通过调用GLSurfaceView类的GLSurfaceView类的setRenderer(GLSurfaceView.Renderer)方法去注册这个“renderer”。

 

Threading   线程

The renderer will be called on a separate thread, so that rendering performance is decoupled from the UI thread. Clients typically need to communicate with the renderer from the UI thread, because that's where input events are received. Clients can communicate using any of the standard Java techniques for cross-thread communication, or they can use the queueEvent(Runnable) convenience method.
   这个渲染器会被当作一个独立的线程被调用,所以这个渲染性能和系统UI是不相干的。通常用户需要从UI中关联渲染器,因为UI线程是事件接受的地方。用户们可以用很多java技术上的方式去做到UI与渲染器的线程之间的调用或者也可以用 queueEvent(Runnable) 这个便利的方法。

 

EGL Context Lost

There are situations where the EGL rendering context will be lost. This typically happens when device wakes up after going to sleep. When the EGL context is lost, all OpenGL resources (such as textures) that are associated with that context will be automatically deleted. In order to keep rendering correctly, a renderer must recreate any lost resources that it still needs. The onSurfaceCreated(GL10, EGLConfig) method is a convenient place to do this.
   某些OpenGL ES渲染的地方会有丢失的局面,类似于失帧。这是典型的事件,如程序正从睡眠中唤醒。当这个EGL的环境丢失是,所有和环境有关联的OpenGL的资源(如纹理资源)都将被自动清除掉。为了保持正确的渲染效果,这个渲染器必须要重新绘制那些被丢失的重要的资源。然而,这个 onSurfaceCreated(GL10, EGLConfig)方法最大好处就是解决上面的问题。

 

Summary

Public Methods
abstract voidonDrawFrame(GL10 gl)
Called to draw the current frame.
绘制当前的框架时调用
abstract voidonSurfaceChanged(GL10 gl, int width, int height)
Called when the surface changed size.
表层界面(主视图)发生改变时调用
abstract voidonSurfaceCreated(GL10 gl, EGLConfig config)
Called when the surface is created or recreated.
框架被创建或者被重建的时候调用

Public Methods

public abstract void onDrawFrame (GL10 gl)
Since:  API Level 3

Called to draw the current frame.

This method is responsible for drawing the current frame.

The implementation of this method typically looks like this:

 void onDrawFrame(GL10 gl) {
     gl
.glClear(GL10.GL_COLOR_BUFFER_BIT | GL10.GL_DEPTH_BUFFER_BIT);//清除屏幕和深度缓存
     
//... other gl calls to render the scene ...
 
}
 

 

Parameters
glthe GL interface. Use instanceof to test if the interface supports GL11 or higher interfaces.
public abstract void onSurfaceChanged (GL10 gl, int width, int height)
Since:  API Level 3

Called when the surface changed size.

Called after the surface is created and whenever the OpenGL ES surface size changes.

Typically you will set your viewport here. If your camera is fixed then you could also set your projection matrix here:

 void onSurfaceChanged(GL10 gl, int width, int height) {
     gl
.glViewport(0, 0, width, height); //这是OpenGL场景的大小
     
// for a fixed camera, set the projection too
     
float ratio = (float) width / height;
     gl
.glMatrixMode(GL10.GL_PROJECTION); //设置投影矩阵
     gl
.glLoadIdentity();//重置当前的模型观察矩阵
     gl
.glFrustumf(-ratio, ratio, -1, 1, 1, 10);//设置视口的大小
 
}
 

 

Parameters
glthe GL interface. Use instanceof to test if the interface supports GL11 or higher interfaces.
public abstract void onSurfaceCreated (GL10 gl, EGLConfig config)
Since:  API Level 3

Called when the surface is created or recreated.

Called when the rendering thread starts and whenever the EGL context is lost. The EGL context will typically be lost when the Android device awakes after going to sleep.

Since this method is called at the beginning of rendering, as well as every time the EGL context is lost, this method is a convenient place to put code to create resources that need to be created when the rendering starts, and that need to be recreated when the EGL context is lost. Textures are an example of a resource that you might want to create here.

Note that when the EGL context is lost, all OpenGL resources associated with that context will be automatically deleted. You do not need to call the corresponding "glDelete" methods such as glDeleteTextures to manually delete these lost resources.

 

Parameters
glthe GL interface. Use instanceof to test if the interface supports GL11 or higher interfaces.
configthe EGLConfig of the created surface. Can be used to create matching pbuffers.

 

  • 0
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值