IOhannes m zmölnig wrote:
Update of /cvsroot/pd-gem/Gem/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16495
Modified Files: configure.ac Log Message: use AC_CHECK_FUNC rather than AC_CHECK_LIB to check for glBindProgram{NV,ARB} since on osX we don't have a library libGL but rather use the OpenGL-framework
NOTE: the test for glBindProgramNV fails to detect the nvidia-extensions on osX why ? because you have to explicitely request them by defining GL_NV_vertex_program before including the glext.h file on osX on linux (mesaGL,...) it is different: the extensions are only included, if GL_NV_vertex_program is NOT already defined
does anybody know, why apple's openGL headerfiles behave like that ? why don't they follow SGI's reference implementation ? can this be thought of as a "bug" ?
mfg.asdr. IOhannes
On Oct 5, 2005, at 10:53 AM, IOhannes m zmoelnig wrote:
c Log Message: use AC_CHECK_FUNC rather than AC_CHECK_LIB to check for glBindProgram{NV,ARB} since on osX we don't have a library libGL but rather use the OpenGL-framework NOTE: the test for glBindProgramNV fails to detect the nvidia- extensions on osX why ? because you have to explicitely request them by defining GL_NV_vertex_program before including the glext.h file on osX on linux (mesaGL,...) it is different: the extensions are only included, if GL_NV_vertex_program is NOT already defined
does anybody know, why apple's openGL headerfiles behave like that ? why don't they follow SGI's reference implementation ? can this be thought of as a "bug" ?
...does SGI's reference implementation suggest that everything must exist as a lib? I'd view this simply as a non-portable missuse of autoconf...
...but I'd also like to suggest (again, first posted in april) that we sidestep this whole morass and adopt glew (or something similar, tho I've happily used glew on many other projects), and move all this silliness of compile-time extension checking to runtime checking...
...it's just a header and a coupla c files, that can either be compiled into a lib or just absorbed into gem like we've done with other necessary libs...the only problem is that this is a big task, and probably affects every file in GEM...other than that, I would've done it already ;-)
whatcha think? jamie
james tittle wrote:
On Oct 5, 2005, at 10:53 AM, IOhannes m zmoelnig wrote:
does anybody know, why apple's openGL headerfiles behave like that ? why don't they follow SGI's reference implementation ? can this be thought of as a "bug" ?
...does SGI's reference implementation suggest that everything must exist as a lib?
no, i was unclear here. it has nothing to do withthe actual implementation. the question was rather, why the header-structure is different from SGI's "reference headers" (if they can be called such)
I'd view this simply as a non-portable missuse of autoconf...
it is not really an autoconf problem; everything that uses headers (that are different in structure across various platforms) ought to have the same problems.
...but I'd also like to suggest (again, first posted in april) that we sidestep this whole morass and adopt glew (or something similar, tho I've happily used glew on many other projects), and move all this silliness of compile-time extension checking to runtime checking...
...it's just a header and a coupla c files, that can either be compiled into a lib or just absorbed into gem like we've done with other necessary libs...the only problem is that this is a big task, and probably affects every file in GEM...other than that, I would've done it already ;-)
whatcha think?
i think it is a good idea (have to check with w32 first)
fmg.asdr. IOhannes
On Oct 5, 2005, at 12:45 PM, IOhannes m zmoelnig wrote:
james tittle wrote:
...but I'd also like to suggest (again, first posted in april) that we sidestep this whole morass and adopt glew (or something similar, tho I've happily used glew on many other projects), and move all this silliness of compile-time extension checking to runtime checking... http://glew.sf.net ...it's just a header and a coupla c files, that can either be compiled into a lib or just absorbed into gem like we've done with other necessary libs...the only problem is that this is a big task, and probably affects every file in GEM...other than that, I would've done it already ;-) whatcha think?
i think it is a good idea (have to check with w32 first)
...glew works on all platforms we support, and also supports all extensions up to and including opengl2.0...there are two other projects that may also be considered:
http://elf-stone.com/glee.php http://www.julius.caesar.de/oglext/
...I've use glee before also, and it may be even simpler than glew...? A good crop of choices, as all support what we need...
james
james tittle wrote:
i think it is a good idea (have to check with w32 first)
...glew works on all platforms we support, and also supports all extensions up to and including opengl2.0...there are two other projects that may also be considered:
http://elf-stone.com/glee.php http://www.julius.caesar.de/oglext/
...I've use glee before also, and it may be even simpler than glew...? A good crop of choices, as all support what we need...
but it seems like only glew supports multiple rendering contexts. apart from that it seems like all of these libraries basically work the same (from a users point of view)
mfg.adsr. IOhannes