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?