summaryrefslogtreecommitdiff
path: root/x11perf.c
diff options
context:
space:
mode:
Diffstat (limited to 'x11perf.c')
-rw-r--r--x11perf.c25
1 files changed, 8 insertions, 17 deletions
diff --git a/x11perf.c b/x11perf.c
index a77316d..3939f02 100644
--- a/x11perf.c
+++ b/x11perf.c
@@ -739,23 +739,14 @@ CreatePerfGCs(XParms xp, int func, unsigned long pm)
gcvddfg.function = func;
gcvddbg.function = func;
- if (func == GXxor) {
- /* Make test look good visually if possible */
- gcvbg.foreground = gcvfg.foreground = bg ^ fg;
- gcvbg.background = gcvfg.background = bg;
- /* Double Dash GCs (This doesn't make a huge amount of sense) */
- gcvddbg.foreground = gcvddfg.foreground = bg ^ fg;
- gcvddbg.background = gcvddfg.foreground = bg ^ ddbg;
- } else {
- gcvfg.foreground = fg;
- gcvfg.background = bg;
- gcvbg.foreground = bg;
- gcvbg.background = fg;
- gcvddfg.foreground = fg;
- gcvddfg.background = ddbg;
- gcvddbg.foreground = ddbg;
- gcvddbg.background = fg;
- }
+ gcvfg.foreground = fg;
+ gcvfg.background = bg;
+ gcvbg.foreground = bg;
+ gcvbg.background = fg;
+ gcvddfg.foreground = fg;
+ gcvddfg.background = ddbg;
+ gcvddbg.foreground = ddbg;
+ gcvddbg.background = fg;
xp->fggc = XCreateGC(xp->d, xp->w,
GCForeground | GCBackground | GCGraphicsExposures
| GCFunction | GCPlaneMask, &gcvfg);