From: Brian P. <br...@va...> - 2000-12-11 15:41:25
|
"Jacob (=Jouk) Jansen" wrote: > > Hi all, > > The new glx-header files give a lot of problems compiling glut: > -Defining GLX_SGIS_multisample results in an undefined > GLX_SAMPLES_SGIS > in i.e. GLUT_DSTR.C. > -defining GLX_SGIX_video_resize or GLX_SYNC_FRAME_SGIX results in undefined > functions : > glXBindChannelToWindowSGIX > glXChannelRectSGIX > glXChannelRectSyncSGIX > glXQueryChannelDeltasSGIX > glXQueryChannelRectSGIX > -defining GLX_SGIX_fbconfig results in undefined functions : > glXCreateContextWithConfigSGIX > glXGetFBConfigAttribSGIX > glXGetFBConfigFromVisualSGIX Two problems: 1. glut_dstr.c shouldn't include glx.h since glutint.h already includes it. I've fixed glut_dstr.c 2. The glxext.h file is broken. It #defines GLX_SGIS_multisample but doesn't define any of the extension's new tokens. I've made a temporary fix and will report the problem to SGI. -Brian |