开发者

EGL_KHR_IMAGE <- what is it and when should I use it

开发者 https://www.devze.com 2023-04-10 01:02 出处:网络
Can someone explain in simple terms what an egl image is, and an example of when I would want to use one? I know it can significantly increase performance, but I\'m having trouble finding documentatio

Can someone explain in simple terms what an egl image is, and an example of when I would want to use one? I know it can significantly increase performance, but I'm having trouble finding documentation. Before I try and really fig开发者_JS百科ure it out, I want to make sure its even worth learning.

Thanks.


So a year later, I have become more of an expert in Android graphics and actually wrote a white paper about EGL Images. If my company lets me publish the paper externally, I'll post it here. For the time being, here is a short answer.

An EGL Image is simply a texture whose content can be updated without having to re-upload to VRAM (meaning no call to glTexImage2D). One of the only drawbacks, besides increased code complexity, is that the application developer has to handle synchronization themselves. In apps that I've written, I had to implement my own "internal" swapchain of EGL Images and manage all the locking primitives myself. Thus, a call to eglSwapBuffers swaps front and back framebuffers as usual, but in a seperate thread there are 2 EGL Images swapping front-to-back as new content becomes available.


The Khronos documentation is at:

http://www.khronos.org/registry/egl/extensions/KHR/EGL_KHR_image.txt

http://www.khronos.org/registry/egl/extensions/KHR/EGL_KHR_image_base.txt

On the other hand, given how opaque most Khronos documentation is, this may not help much. I haven't been able to figure them out myself.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号