diff options
author | Eamon Walsh <ewalsh@tycho.nsa.gov> | 2007-09-19 13:59:35 -0400 |
---|---|---|
committer | Eamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil> | 2007-09-19 13:59:35 -0400 |
commit | 082c0f7fb34458ebb303cf875d1d75686eca25e6 (patch) | |
tree | 2435af785e3914a7003f37e217b6304b58dd22aa /include/windowstr.h | |
parent | 5b36b64192517e2470766ce7ff1d4dc04c936fad (diff) |
devPrivates rework: move devPrivates field in drawable structure types
to just below the DrawableRec. Wish there were a better way to do this
but it has to be in the same place for all drawable types.
Diffstat (limited to 'include/windowstr.h')
-rw-r--r-- | include/windowstr.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/windowstr.h b/include/windowstr.h index ca212ad99..4359481cd 100644 --- a/include/windowstr.h +++ b/include/windowstr.h @@ -124,6 +124,7 @@ typedef struct _WindowOpt { typedef struct _Window { DrawableRec drawable; + PrivateRec *devPrivates; WindowPtr parent; /* ancestor chain */ WindowPtr nextSib; /* next lower sibling */ WindowPtr prevSib; /* next higher sibling */ @@ -160,7 +161,6 @@ typedef struct _Window { #ifdef COMPOSITE unsigned redirectDraw:2; /* rendering is redirected from here */ #endif - PrivateRec *devPrivates; } WindowRec; /* |