diff options
author | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 15:54:53 +0000 |
---|---|---|
committer | Kaleb Keithley <kaleb@freedesktop.org> | 2003-11-14 15:54:53 +0000 |
commit | d7d99c8433b3bd35c8bad352ebd1fc49cff45264 (patch) | |
tree | 83c0e24403636a9a639ebf5c2fcd4e3b7efecef7 /do_valgc.c |
R6.6 is the Xorg base-lineXORG-MAIN
Diffstat (limited to 'do_valgc.c')
-rw-r--r-- | do_valgc.c | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/do_valgc.c b/do_valgc.c new file mode 100644 index 0000000..c458c2f --- /dev/null +++ b/do_valgc.c @@ -0,0 +1,81 @@ +/* $Xorg: do_valgc.c,v 1.3 2000/08/17 19:54:10 cpqbld Exp $ */ +/***************************************************************************** +Copyright 1988, 1989 by Digital Equipment Corporation, Maynard, Massachusetts. + + All Rights Reserved + +Permission to use, copy, modify, and distribute this software and its +documentation for any purpose and without fee is hereby granted, +provided that the above copyright notice appear in all copies and that +both that copyright notice and this permission notice appear in +supporting documentation, and that the name of Digital not be +used in advertising or publicity pertaining to distribution of the +software without specific, written prior permission. + +DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING +ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL +DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR +ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, +WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, +ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS +SOFTWARE. + +******************************************************************************/ + +#ifndef VMS +#include <X11/Xatom.h> +#else +#include <decw$include/Xatom.h> +#endif +#include "x11perf.h" + +static Window win[2]; + +int InitGC(xp, p, reps) + XParms xp; + Parms p; + int reps; +{ + win[0] = XCreateSimpleWindow( + xp->d, xp->w, 10, 10, 10, 10, 1, xp->foreground, xp->background); + win[1] = XCreateSimpleWindow( + xp->d, xp->w, 30, 30, 10, 10, 1, xp->foreground, xp->background); + XMapSubwindows(xp->d, xp->w); + return reps; +} + +void DoChangeGC(xp, p, reps) + XParms xp; + Parms p; + int reps; +{ + int i; + XGCValues gcv; + + for (i = 0; i != reps; i++) { + gcv.foreground = xp->foreground; + XChangeGC(xp->d, xp->fggc, GCForeground , &gcv); + XDrawPoint(xp->d, win[0], xp->fggc, 5, 5); + + gcv.foreground = xp->background; + XChangeGC(xp->d, xp->fggc, GCForeground , &gcv); + XDrawPoint(xp->d, win[1], xp->fggc, 5, 5); + + gcv.foreground = xp->background; + XChangeGC(xp->d, xp->fggc, GCForeground , &gcv); + XDrawPoint(xp->d, win[0], xp->fggc, 5, 5); + + gcv.foreground = xp->foreground; + XChangeGC(xp->d, xp->fggc, GCForeground , &gcv); + XDrawPoint(xp->d, win[1], xp->fggc, 5, 5); + } +} + +void EndGC(xp, p) + XParms xp; + Parms p; +{ + XDestroyWindow(xp->d, win[0]); + XDestroyWindow(xp->d, win[1]); +} + |