Mesa (master): r600: remove stray END_BATCH in blit code

Alex Deucher agd5f at kemper.freedesktop.org
Sat Jan 16 13:47:42 UTC 2010


Module: Mesa
Branch: master
Commit: 8d2427375049473fe9be49b1058de5a405b2eabf
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=8d2427375049473fe9be49b1058de5a405b2eabf

Author: Alex Deucher <alexdeucher at gmail.com>
Date:   Sat Jan 16 08:45:08 2010 -0500

r600: remove stray END_BATCH in blit code

---

 src/mesa/drivers/dri/r600/r600_blit.c |    1 -
 1 files changed, 0 insertions(+), 1 deletions(-)

diff --git a/src/mesa/drivers/dri/r600/r600_blit.c b/src/mesa/drivers/dri/r600/r600_blit.c
index 19071ef..de3a587 100644
--- a/src/mesa/drivers/dri/r600/r600_blit.c
+++ b/src/mesa/drivers/dri/r600/r600_blit.c
@@ -1090,7 +1090,6 @@ set_scissors(context_t *context, int x1, int y1, int x2, int y2)
     R600_OUT_BATCH_REGSEQ(PA_SC_GENERIC_SCISSOR_TL, 2);
     R600_OUT_BATCH((x1 << 0) | (y1 << 16) | (WINDOW_OFFSET_DISABLE_bit));
     R600_OUT_BATCH((x2 << 0) | (y2 << 16));
-    END_BATCH();
 
     /* XXX 16 of these PA_SC_VPORT_SCISSOR_0_TL_num ... */
     R600_OUT_BATCH_REGSEQ(PA_SC_VPORT_SCISSOR_0_TL, 2 );




More information about the mesa-commit mailing list