diff options
author | Eric Anholt <anholt@freebsd.org> | 2003-12-30 08:45:53 +0000 |
---|---|---|
committer | Eric Anholt <anholt@freebsd.org> | 2003-12-30 08:45:53 +0000 |
commit | 5f947b04da13256e5f514c40dedb98c6e1cbe0f1 (patch) | |
tree | acbcb551d72872009de527b5a2426f329287c1ab /hw | |
parent | c8eb20a08ee9174374b6f5ac6e79f31fce26e181 (diff) |
There's never a copy between different depths. Remove the check.
Diffstat (limited to 'hw')
-rw-r--r-- | hw/kdrive/ati/ati_drawtmp.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/hw/kdrive/ati/ati_drawtmp.h b/hw/kdrive/ati/ati_drawtmp.h index b6ccecc78..a0057222f 100644 --- a/hw/kdrive/ati/ati_drawtmp.h +++ b/hw/kdrive/ati/ati_drawtmp.h @@ -171,11 +171,6 @@ TAG(ATIPrepareCopy)(PixmapPtr pSrc, PixmapPtr pDst, int dx, int dy, int alu, Pix CARD32 datatype; LOCALS; - /* No acceleration between different formats */ - if (pSrc->drawable.bitsPerPixel != pDst->drawable.bitsPerPixel) - ATI_FALLBACK(("src bpp != dst bpp (%d vs %d)\n", - pSrc->drawable.bitsPerPixel, pDst->drawable.bitsPerPixel)); - copydx = dx; copydy = dy; |