Project Home
Project Home
Documents
Documents
Wiki
Wiki
Discussion Forums
Discussions
Project Information
Project Info
Forum Topic - glNewList(), glCallList(), glDeleteLists() in 6.4.1: (2 Items)
   
glNewList(), glCallList(), glDeleteLists() in 6.4.1  
Just found that GLES_CM library in 6.4.1 M4 have glNewList(), glCallList(), glDeleteLists(), etc. functions. I've found 
them because they are intersects with my library which also have these functions for GL emulation with identical names.

Why these functions for ?

Does gGetlFloatv() works as expected in QNX's GLES 1.0 implementation ?
Re: glNewList(), glCallList(), glDeleteLists() in 6.4.1  
glGetFloatv is defined in OpenGL ES 1.1 but no in OpenGL ES 1.0. If glGetString(GL_VERSION) returns "1.0...", you should
 avoid using this function, otherwise unexpected results may occur now or with future updates.

glNewList, glCallList, glDeleteLists, etc are not part of OpenGL ES, but they are part of OpenGL ES SC. For this reason,
 it would be better not to have functions with identical names, even if you would expect these to be defined in 
libGLES_SC only, and not libGLES_C[M|L]. To my knowledge, these entry points were added for very specific uses and 
should not be for general use.