xserver/include windowstr.h,1.11,1.12
Keith Packard <xserver-commit-u7BhqnqprCWvj1b/[email protected]> Tue, 8 Feb 2005 14:01:56 -0800 (PST)
| Newsgroups | gmane.comp.freedesktop.xserver.cvs |
|---|---|
| Message-ID | <[email protected]> |
Committed by: keithp Update of /cvs/xserver/xserver/include In directory gabe:/tmp/cvs-serv15619/include Modified Files: windowstr.h Log Message: 2005-02-08 Keith Packard <[email protected]> * include/windowstr.h Add ShapeInput support Index: windowstr.h =================================================================== RCS file: /cvs/xserver/xserver/include/windowstr.h,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- windowstr.h 12 Feb 2004 18:58:49 -0000 1.11 +++ windowstr.h 8 Feb 2005 22:01:54 -0000 1.12 @@ -85,6 +85,7 @@ unsigned long backingPixel; /* default: 0 */ RegionPtr boundingShape; /* default: NULL */ RegionPtr clipShape; /* default: NULL */ + RegionPtr inputShape; /* default: NULL */ #ifdef XINPUT struct _OtherInputMasks *inputMasks; /* default: NULL */ #endif @@ -171,6 +172,7 @@ #define wBackingPixel(w) wUseDefault(w, backingPixel, 0) #define wBoundingShape(w) wUseDefault(w, boundingShape, NULL) #define wClipShape(w) wUseDefault(w, clipShape, NULL) +#define wInputShape(w) wUseDefault(w, inputShape, NULL) #define wClient(w) (clients[CLIENT_ID((w)->drawable.id)]) #define wBorderWidth(w) ((int) (w)->borderWidth)