diff options
author | Daniel Vetter <daniel.vetter@ffwll.ch> | 2009-08-11 16:06:42 +0200 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2009-10-05 13:07:42 -0700 |
commit | 99afdf985fa9f763fda4bc49ccd8111960a4ae0f (patch) | |
tree | 8950d535e6f68e0f6cd24e954787066028e3e44e /src/i830_video.c | |
parent | d598456f1fe013c250530730c57ad720d38cde3a (diff) |
Xv: small cleanups in I830PutImage
- scrap unused variable overlay
- scrap an superflous if and attach the code to the preceeding else
- tiny layout fix.
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'src/i830_video.c')
-rw-r--r-- | src/i830_video.c | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/i830_video.c b/src/i830_video.c index 8dfa2dd9..c8da46df 100644 --- a/src/i830_video.c +++ b/src/i830_video.c @@ -2414,7 +2414,6 @@ I830PutImage(ScrnInfoPtr pScrn, I830Ptr pI830 = I830PTR(pScrn); I830PortPrivPtr pPriv = (I830PortPrivPtr) data; ScreenPtr pScreen = screenInfo.screens[pScrn->scrnIndex]; - I830OverlayRegPtr overlay; PixmapPtr pPixmap = get_drawable_pixmap(pDraw);; INT32 x1, x2, y1, y2; int dstPitch; @@ -2422,11 +2421,6 @@ I830PutImage(ScrnInfoPtr pScrn, BoxRec dstBox; xf86CrtcPtr crtc; - if (pPriv->textured) - overlay = NULL; - else - overlay = I830OVERLAYREG(pI830); - #if 0 ErrorF("I830PutImage: src: (%d,%d)(%d,%d), dst: (%d,%d)(%d,%d)\n" "width %d, height %d\n", src_x, src_y, src_w, src_h, drw_x, drw_y, @@ -2462,7 +2456,7 @@ I830PutImage(ScrnInfoPtr pScrn, width, height)) return Success; - if (!pPriv->textured) { + if (!pPriv->textured) { /* texture video handles rotation differently. */ if (crtc) pPriv->rotation = crtc->rotation; @@ -2471,14 +2465,13 @@ I830PutImage(ScrnInfoPtr pScrn, "Fail to clip video to any crtc!\n"); return Success; } - } + } if (!i830_copy_video_data(pScrn, pPriv, width, height, &dstPitch, &dstPitch2, x1, y1, x2, y2, id, buf)) return BadAlloc; - if (!pPriv->textured) { i830_display_overlay(pScrn, crtc, id, width, height, dstPitch, x1, y1, x2, y2, &dstBox, src_w, src_h, @@ -2510,8 +2503,7 @@ I830PutImage(ScrnInfoPtr pScrn, dstPitch, dstPitch2, x1, y1, x2, y2, src_w, src_h, drw_w, drw_h, pPixmap); } - } - if (pPriv->textured) { + DamageDamageRegion(pDraw, clipBoxes); } |