hi,

welcome to Fluxus.

> > There *may* be more info in your ".xsession-errors" file (should be in
> > your home dir); if anything there seems relevant you can send those
> > lines.
your problem is strange, but the old post from Kassen shows that
something may be wrong with (show-fps). your gpu is not ideal indeed, but if
everything but (show-fps) works that should not be the problem.
it might be the part where the fps is converted to float to string in
libfluxus/src/Renderer.cpp starting from line 347.
try changing this:
        char s[32];
        sprintf(s,"%f fps",FPS);
to this, and let us know how it works:
        char s[32];
        snprintf(s, 32, "%f fps",FPS);

best,
gabor

Reply via email to