chun-wang / blog

0 stars 0 forks source link

Android OGLES #77

Open chun-wang opened 3 years ago

chun-wang commented 3 years ago

https://juejin.cn/post/6844903668685225991

chun-wang commented 3 years ago

https://learnopengl-cn.readthedocs.io/zh/latest/

chun-wang commented 3 years ago

https://blog.csdn.net/cauchyweierstrass/article/details/53166940

chun-wang commented 3 years ago

Framebuffer生成数据是水平镜像的 可以增加一个翻转矩阵绘制

chun-wang commented 3 years ago

https://www.zybuluo.com/SR1s/note/650099

chun-wang commented 3 years ago

渲染到SurfaceTexture在这里似乎很奇怪。 SurfaceTexture的重点是将发送到Surface的任何内容转换为GLES"外部"纹理。 由于使用GLES进行渲染,因此您可以使用FBO进行第二遍渲染为GL_TEXTURE_2D。

chun-wang commented 3 years ago

需要说明的是,eglChooseConfig(eglDisp, confAttr, &eglConf, 1, &numConfigs)中confAttr参数一定要有EGL_SURFACE_TYPE,EGL_PBUFFER_BIT这个配置,它决定了是渲染surface的类型,是屏幕还是内存。另外,还有一些选项和OpenGL ES版本有关,具体选用1.x还是2.x,这个视个人情况而定,我使用的是2.x。

chun-wang commented 3 years ago

https://www.cnblogs.com/hrlnw/p/4642272.html