Matt N.
Matt N.

Reputation: 1239

glBindFramebufferOES - documentation?

I am trying to find the reference pages / documentation of the method glBindFramebufferOES(and related directives) and spent a good amount of time googling. I am a registered iPhone developer and searching the resources provided by Apple in the Dev Centre turned up nothing.

Please, can someone point me to where I can read the specification of glBindFramebufferOES? A link would be great but if it's not publicly available a short explanation how I can find it in the dev centre would be equally appreciated.

Upvotes: 0

Views: 1302

Answers (2)

chrisvarnz
chrisvarnz

Reputation: 457

It's defined by the OES_framebuffer_object extension.

Upvotes: 0

Brad Larson
Brad Larson

Reputation: 170309

The OES suffix is present only with OpenGL ES 1.1. In OpenGL ES 2.0, it's simply glBindFramebuffer() and you can find the documentation for this at the Khronos Group. Their hosted specifications are the primary reference for OpenGL ES functions and extensions.

Upvotes: 4

Related Questions