dix/render: consolidate window format matching code.
This code existed in 3 different forms, perhaps it should be consolidated. Reviewed-by: Keith Packard <keithp@keithp.com> Reviewed-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Dave Airlie <airlied@redhat.com> Signed-off-by: Keith Packard <keithp@keithp.com>
This commit is contained in:
committed by
Keith Packard
parent
a7b97b0fa8
commit
957bf959fb
@@ -560,8 +560,8 @@ compNewPixmap(WindowPtr pWin, int x, int y, int w, int h)
|
||||
}
|
||||
}
|
||||
else {
|
||||
PictFormatPtr pSrcFormat = compWindowFormat(pParent);
|
||||
PictFormatPtr pDstFormat = compWindowFormat(pWin);
|
||||
PictFormatPtr pSrcFormat = PictureWindowFormat(pParent);
|
||||
PictFormatPtr pDstFormat = PictureWindowFormat(pWin);
|
||||
XID inferiors = IncludeInferiors;
|
||||
int error;
|
||||
|
||||
|
||||
@@ -272,8 +272,6 @@ void
|
||||
#define compCheckTree(s)
|
||||
#endif
|
||||
|
||||
PictFormatPtr compWindowFormat(WindowPtr pWin);
|
||||
|
||||
void
|
||||
compSetPixmap(WindowPtr pWin, PixmapPtr pPixmap);
|
||||
|
||||
|
||||
@@ -631,28 +631,6 @@ compGetRedirectBorderClip(WindowPtr pWin)
|
||||
return &cw->borderClip;
|
||||
}
|
||||
|
||||
static VisualPtr
|
||||
compGetWindowVisual(WindowPtr pWin)
|
||||
{
|
||||
ScreenPtr pScreen = pWin->drawable.pScreen;
|
||||
VisualID vid = wVisual(pWin);
|
||||
int i;
|
||||
|
||||
for (i = 0; i < pScreen->numVisuals; i++)
|
||||
if (pScreen->visuals[i].vid == vid)
|
||||
return &pScreen->visuals[i];
|
||||
return 0;
|
||||
}
|
||||
|
||||
PictFormatPtr
|
||||
compWindowFormat(WindowPtr pWin)
|
||||
{
|
||||
ScreenPtr pScreen = pWin->drawable.pScreen;
|
||||
|
||||
return PictureMatchVisual(pScreen, pWin->drawable.depth,
|
||||
compGetWindowVisual(pWin));
|
||||
}
|
||||
|
||||
static void
|
||||
compWindowUpdateAutomatic(WindowPtr pWin)
|
||||
{
|
||||
@@ -660,8 +638,8 @@ compWindowUpdateAutomatic(WindowPtr pWin)
|
||||
ScreenPtr pScreen = pWin->drawable.pScreen;
|
||||
WindowPtr pParent = pWin->parent;
|
||||
PixmapPtr pSrcPixmap = (*pScreen->GetWindowPixmap) (pWin);
|
||||
PictFormatPtr pSrcFormat = compWindowFormat(pWin);
|
||||
PictFormatPtr pDstFormat = compWindowFormat(pWin->parent);
|
||||
PictFormatPtr pSrcFormat = PictureWindowFormat(pWin);
|
||||
PictFormatPtr pDstFormat = PictureWindowFormat(pWin->parent);
|
||||
int error;
|
||||
RegionPtr pRegion = DamageRegion(cw->damage);
|
||||
PicturePtr pSrcPicture = CreatePicture(0, &pSrcPixmap->drawable,
|
||||
|
||||
Reference in New Issue
Block a user