zoukankan      html  css  js  c++  java
  • android opengl es 源码

    【转自:http://blog.csdn.net/happyhell/article/details/6086973】

    The entire OpenGL ES API on Android is implemented in three libraries, located under /system/lib (for more information about OpenGL ES visit the official Khronos page):


    * libEGL.so: implementation of the EGL common platform interface layer (see Khronos page).
    * libGLESv1_CM.so: implementation of the OpenGL ES 1.X API
    * libGLESv2.so: implementation of the OpenGL ES 2.X API.

    Those libraries are actually hooks to the proprietary driver implementation located under /system/lib/egl:
    libEGL_adreno200.so, libGLESv1_CM_adreno200.so, libGLESv2_adreno200.so.

    There’s also a software GLES implementation library there, called: libGLES_android.so.

    The egl.cfg file defines the names of libraries used for hooking.

    The source code of those libraries is located under: frameworks/base/opengl/libs.

  • 相关阅读:
    关于IOS6屏幕旋转的问题
    学习备忘录
    关于多种手势问题
    关于 IOS中 绘制图形的问题
    爱的意义
    IOS支付SDK
    IOS开发特别备注
    ios相关教程
    iOS7光标问题
    收藏网站
  • 原文地址:https://www.cnblogs.com/donghua/p/5119784.html
Copyright © 2011-2022 走看看