1 |
|
---|
2 | #ifdef HAVE_DIX_CONFIG_H
|
---|
3 | #include <dix-config.h>
|
---|
4 | #endif
|
---|
5 |
|
---|
6 | #ifndef __MIOVERLAY_H
|
---|
7 | #define __MIOVERLAY_H
|
---|
8 |
|
---|
9 | typedef void (*miOverlayTransFunc)(ScreenPtr, int, BoxPtr);
|
---|
10 | typedef Bool (*miOverlayInOverlayFunc)(WindowPtr);
|
---|
11 |
|
---|
12 | Bool
|
---|
13 | miInitOverlay(
|
---|
14 | ScreenPtr pScreen,
|
---|
15 | miOverlayInOverlayFunc inOverlay,
|
---|
16 | miOverlayTransFunc trans
|
---|
17 | );
|
---|
18 |
|
---|
19 | Bool
|
---|
20 | miOverlayGetPrivateClips(
|
---|
21 | WindowPtr pWin,
|
---|
22 | RegionPtr *borderClip,
|
---|
23 | RegionPtr *clipList
|
---|
24 | );
|
---|
25 |
|
---|
26 | Bool miOverlayCollectUnderlayRegions(WindowPtr, RegionPtr*);
|
---|
27 | void miOverlayComputeCompositeClip(GCPtr, WindowPtr);
|
---|
28 | Bool miOverlayCopyUnderlay(ScreenPtr);
|
---|
29 | void miOverlaySetTransFunction(ScreenPtr, miOverlayTransFunc);
|
---|
30 | void miOverlaySetRootClip(ScreenPtr, Bool);
|
---|
31 |
|
---|
32 | #endif /* __MIOVERLAY_H */
|
---|