diff options
author | Keith Packard <keithp@koto.keithp.com> | 2007-09-01 21:14:22 -0700 |
---|---|---|
committer | Keith Packard <keithp@koto.keithp.com> | 2007-09-01 21:14:22 -0700 |
commit | f98dfec79dadb70fa7bba84e7335f92b3a73dc02 (patch) | |
tree | f630317e6ca45cf7c99e9bd4d78f1cc104f53a04 /composite/compint.h | |
parent | 1afdf8b0a92437dffe84fa98b6083b3d8fd55e27 (diff) |
[COMPOSITE] Composite used for pixmap population on redirect. (Bug #7447)
compNewPixmap copies bits from the parent window to the redirected child
pixmap to populate the pixmap with reasonable data. It cannot always use
CopyArea as that only works across matching depths. Use Composite when
the depths do not match.
Diffstat (limited to 'composite/compint.h')
-rw-r--r-- | composite/compint.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/composite/compint.h b/composite/compint.h index 38b1777a2..f69595ccc 100644 --- a/composite/compint.h +++ b/composite/compint.h @@ -237,6 +237,9 @@ compCheckTree (ScreenPtr pScreen); #define compCheckTree(s) #endif +PictFormatPtr +compWindowFormat (WindowPtr pWin); + void compSetPixmap (WindowPtr pWin, PixmapPtr pPixmap); |