Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What the OES means in "GL_RENDERBUFFER_OES"?

I am reading the OpenGL documents from Apple. I noticed that a number of the GL names have the format GL_RENDERBUFFER_OES. What is the meaning of the OES part of these names?

like image 510
eonil Avatar asked Feb 05 '10 19:02

eonil


1 Answers

OES is the "vendor"-code for the OpenGL ES working group. OES is used for any extensions that is developed by the working group. This is similar to the ARB-code for desktop-OpenGL.

like image 122
kusma Avatar answered Sep 19 '22 15:09

kusma