Add ECompMgrWinGetAlphaPict().

SVN revision: 51491
This commit is contained in:
Kim Woelders 2010-08-21 14:39:57 +00:00
parent 7aab9bea4b
commit 24e722480a
2 changed files with 7 additions and 0 deletions

View File

@ -891,6 +891,12 @@ ECompMgrWinGetPixmap(const EObj * eo)
return cw->pixmap;
}
Picture
ECompMgrWinGetAlphaPict(const EObj * eo)
{
return (eo->cmhook) ? eo->cmhook->pict_alpha : None;
}
static void
ECompMgrWinInvalidate(EObj * eo, int what)
{

View File

@ -58,6 +58,7 @@ void ECompMgrWinChangeShape(EObj * eo);
void ECompMgrWinChangeOpacity(EObj * eo, unsigned int opacity);
void ECompMgrWinChangeShadow(EObj * eo, int shadow);
Pixmap ECompMgrWinGetPixmap(const EObj * eo);
Picture ECompMgrWinGetAlphaPict(const EObj * eo);
void ECompMgrWinClipToGC(EObj * eo, GC gc);
void ECompMgrConfigGet(cfg_composite * cfg);