一.属于GLSurFaceView特性的是:
1.管理一个surface,这个surface就是一块特俗的内存,能直接排版到Android的视图view上。
2.管理一个EGL display,它能让opengl把内容渲染带哦上述的surface上
3.让渲染器在独立的线程中运作,和UI线程分离。
二、说下contentValues:
答:他与hashtable比较类似,都是存储名值对的...
分类:
移动开发 时间:
2015-07-02 17:33:15
阅读次数:
221
1. ANativeWindow_setBuffersGeometry
eglGetConfigAttrib(display, configs[best_config], EGL_NATIVE_VISUAL_ID, &format);
ANativeWindow_setBuffersGeometry((ANativeWindow*)m_window, w, h, format...
分类:
移动开发 时间:
2015-04-23 17:27:17
阅读次数:
214
package?com.example.opengl;
import?android.app.Activity;
import?android.os.Bundle;
import?javax.microedition.khronos.egl.EGLConfig;
import?javax.microedition.khronos.opengles.GL10;
import?a...
分类:
移动开发 时间:
2015-03-29 16:41:19
阅读次数:
168
原文链接:http://www.cnblogs.com/afilover/archive/2010/01/09/1643186.html
原文链接:http://www.cnitblog.com/zouzheng/archive/2011/05/30/74326.html
关于EGL的简明简绍:http://wenku.baidu.com/view/fbfa3860a98271fe910ef9...
分类:
其他好文 时间:
2015-03-20 14:27:54
阅读次数:
113
Android OpenGL库加载过程源码分析//http://mobile.51cto.com/aengine-437165.htm
本文简单介绍OpenGL库的加载过程。OpenGL以动态库的方式提供,因此在使用OpenGL的接口函数绘图前,需要加载OpenGL库,并得到接口函数指针。函数EGLBoolean
egl_init_drivers()就是负责OpenGL库的加载。
...
分类:
其他好文 时间:
2015-03-20 10:56:23
阅读次数:
213
http://blog.csdn.net/nhsoft/article/details/6337434
http://www.klayge.org/2011/04/20/opengl-es-emulator横向比较/
http://blog.csdn.net/nhsoft/article/details/6337434
==================...
分类:
其他好文 时间:
2015-03-05 22:23:55
阅读次数:
371
http://codingnow.cn/opengles/1501.html
===================================================================
1. 下载AMD的OpenGL ES2.0的模拟器 ,下载地址:
http://www.opengles-book.com/ESEmulator.2009-04-28...
OpenGL实现跨平台的功能,在不同的操作系统上需要不同的类似适配层的内容,比如在Windows操作系统上需要WGL。同样的,OpenGL ES是一个平台中立的图形库,在它能够工作前,需要与一个实际的窗口关联起来,但是,与OpenGL不一样的是,OpenGL是每个窗口系统需要一个与之对应的适配层,Windows需要WGL,X-Window需要xgl,Mac OS需要agl。而OpenGL
ES...
分类:
其他好文 时间:
2015-01-09 21:00:33
阅读次数:
280
从egl判断内核的的版本:
OpenGL ES Shader Compiler Version: E031.24.00.14
Build Date: 04/29/14 Tue
Local Branch: mybranch3162585
Remote Branch: quic/LNX.LA.3.5.2.2_rb1
Local Patches: NONE
Reconstruct Branch: AU...
分类:
其他好文 时间:
2014-06-16 11:36:18
阅读次数:
229