MeloS
MeloS

Reputation: 7938

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'. like this: glGetRenderbufferParameterivOES Where can I get reference of these functions?

Upvotes: 0

Views: 1256

Answers (2)

JimN
JimN

Reputation: 723

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.

Upvotes: 1

datenwolf
datenwolf

Reputation: 162164

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).

Upvotes: 0

Related Questions