r600: remove stray END_BATCH in blit code
authorAlex Deucher <alexdeucher@gmail.com>
Sat, 16 Jan 2010 13:45:08 +0000 (08:45 -0500)
committerAlex Deucher <alexdeucher@gmail.com>
Sat, 16 Jan 2010 13:45:08 +0000 (08:45 -0500)
src/mesa/drivers/dri/r600/r600_blit.c

index 19071ef541308750fd8715046959dfaad5471a8a..de3a58706e6cb28276cea3fb4b1112fc028977f5 100644 (file)
@@ -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 );