[cello-devel] Re: Cello
jan
janmar at iprimus.com.au
Tue Mar 9 02:18:25 UTC 2004
Kenny Tilton <ktilton at nyc.rr.com> writes:
>>>>Here is the minimal program I'm trying to get working.
>>>>I'm getting a segfault in ffi land.
>>>>
>>>On which call? If to glutMainLoop, do you manage to re-enter any
>>>callback?
>>>
>>
>>In the glut-create-window call,
>>
> damn, that's early. have you run the C demos that come with freeglut
> as a sanity check?
The demos work, aswell as the following, which is a C version of my
test program.
#include "GL/gl.h"
#include "GL/glut.h"
void
simple_render ()
{
glClear (GL_COLOR_BUFFER_BIT);
glFlush ();
}
int
main (int argc, char** argv)
{
glutInitDisplayMode (GLUT_SINGLE|GLUT_RGB);
glutCreateWindow ("Title.");
glutDisplayFunc (simple_render);
glutMainLoop ();
return 1;
}
> another thought is for folks to post their version numbers on
> everything (OS, freeglut, Lisp, etc etc etc) to help narrow things
> down. Knowing Frank's successful set-up (all those version numbers)
> would probably help anyone going thru X11.
I'm using
- CMUCL 19a dated 2003-11-02
- XFree86 4.2.0
- freeglut 2.0.1
- linux 2.4.19
--
jan
More information about the cello-devel
mailing list