-
Hello Robert,
the problem seems to be that the compiler does not find the GLUT, GLU and GL header files. I think there are some error messages telling you that for example "GL/gl.h" could not be found. Check if the include files are in the include search directories of your compiler. If you are using the GCC, then you can specify include directories with the parameter "-I".
2009-08-03 15:45:32 UTC in GLUI User Interface Library
-
Hello Nigel,
your patch works for me. I wrote a short test application and it detects OpenGL 2.1 and 3.0 now.
Kind regards,
Benjamin.
2009-03-25 15:13:10 UTC in The OpenGL Extension Wrangler Library
-
Hello again,
I wrote a patch that works for me against the current Subversion revision. With the library compiled with that patch I can start an application checking glewIsSupported("GL_VERSION_2_1") again. My OpenGL version string is "3.0.0 NVIDIA 180.41" and I am using Debian GNU/Linux amd64. I cannot find an option to post a file here therefore I am posting it this way:
Index...
2009-03-22 22:55:24 UTC in The OpenGL Extension Wrangler Library
-
Hello,
I have checked out the Subversion repository and found the file "glew_init_gl.c" where the OpenGL version is checked. I think the problem is that the program flow takes the first branch (s[major] >= '2' because s[major] is '3') and then the check (s[minor] >= '1') fails because s[minor] is '0'. Therefore GLEW_VERSION_2_1 will not be set.
Maybe the easiest way to fix this is to...
2009-03-17 23:21:34 UTC in The OpenGL Extension Wrangler Library
-
Hello Atakan,
you did not describe exactly what your problem is. Here are the changes I did to the makefile of glui-2.36 to make it compile with MinGW32 and freeglut-2.4.0.
(I hope the patch will be readable in this forum when I post it this way.)
--- makefile.original Tue Aug 21 11:59:54 2007
+++ makefile.mingw Fri Mar 6 22:00:39 2009
@@ -21,8 +21,8 @@
CPPFLAGS += -I./ -I./include.
2009-03-06 22:12:35 UTC in GLUI User Interface Library