glGetRenderbufferParameterivOES where can I get reference of this function?
I am reading a book about iPhone game development, it uses some functions start with 'gl' and ends with 'OES'开发者_如何学Python. like this: glGetRenderbufferParameterivOES Where can I get reference of these functions?
you can find the man pages for OpenGL ES on the Khronos website:
http://www.khronos.org/opengles/sdk/docs/man/
As far as I know the OES extension was removed as of OpenGL ES 2.0. Hope this helps.
http://www.khronos.org/opengles/sdk/docs/man/
In your case http://www.khronos.org/opengles/sdk/docs/man/xhtml/glGetRenderbufferParameteriv.xml
The OES suffix just marks it as being specific to OpenGL-ES (OES).
精彩评论