mesa: Branch 'master'

Roland Scheidegger sroland at kemper.freedesktop.org
Thu Feb 1 00:08:45 UTC 2007


 src/mesa/drivers/dri/radeon/radeon_ioctl.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

New commits:
diff-tree a2104dc6e18879ed3ba2108a09b6779e461eaa17 (from 5893474c741274cde7a312c920dacfb00790c302)
Author: Roland Scheidegger <sroland at tungstengraphics.com>
Date:   Thu Feb 1 01:09:26 2007 +0100

    fix unitialized values in radeonClear

diff --git a/src/mesa/drivers/dri/radeon/radeon_ioctl.c b/src/mesa/drivers/dri/radeon/radeon_ioctl.c
index 737490f..4c64bc2 100644
--- a/src/mesa/drivers/dri/radeon/radeon_ioctl.c
+++ b/src/mesa/drivers/dri/radeon/radeon_ioctl.c
@@ -1087,10 +1087,6 @@ static void radeonClear( GLcontext *ctx,
       }
    }
 
-   /* Flip top to bottom */
-   cx += dPriv->x;
-   cy  = dPriv->y + dPriv->h - cy - ch;
-
    LOCK_HARDWARE( rmesa );
 
    /* compute region after locking: */
@@ -1099,6 +1095,10 @@ static void radeonClear( GLcontext *ctx,
    cw = ctx->DrawBuffer->_Xmax - cx;
    ch = ctx->DrawBuffer->_Ymax - cy;
 
+   /* Flip top to bottom */
+   cx += dPriv->x;
+   cy  = dPriv->y + dPriv->h - cy - ch;
+
    /* Throttle the number of clear ioctls we do.
     */
    while ( 1 ) {



More information about the mesa-commit mailing list