https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=214396
--- Comment #3 from [email protected] --- This version of the program do not shows the bug. Looks related with a race condition when a call to glutDestroyWindow is missing. #include <stdio.h> #include <GL/glew.h> #include <GL/gl.h> #include <GL/glu.h> #include <GL/glut.h> #include <GL/glext.h> int main(int argc, char **argv) { int win; glutInit(&argc, argv); win = glutCreateWindow("GLUT"); glewInit(); printf("OpenGL version supported by this platform (%s): \n", glGetString(GL_VERSION)); glutDestroyWindow(win); fprintf(stdout, "Exiting...\n"); fflush(stdout); return 0; } -- You are receiving this mail because: You are the assignee for the bug. _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/freebsd-emulation To unsubscribe, send any mail to "[email protected]"
