Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm working on an xscreensaver, and can't figure out what's causing text drawn with XDrawString to flicker so much. I'm drawing a box with XFillRectangle, and then drawing the text in this box. I have a separate GC for drawing text (GCFont | GCForeground, with function = GXcopy), yet it looks like the text color is being modified by something else that's going on. It's only noticable at very high frame rates though - a little bit at 60 FPS, and lots of text flicker at 2000+ FPS.

I have tried double-buffering, drawing everything to a pixmap first and then copying that to the screen, but there's no difference.

The built-in FPS meter in xscreensaver has the same problem.

Does anyone know what's causing this flicker and how it can be gotten rid of?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.