From: Alex Deucher Date: Sat, 16 Jan 2010 13:45:08 +0000 (-0500) Subject: r600: remove stray END_BATCH in blit code X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=8d2427375049473fe9be49b1058de5a405b2eabf;p=mesa.git r600: remove stray END_BATCH in blit code --- diff --git a/src/mesa/drivers/dri/r600/r600_blit.c b/src/mesa/drivers/dri/r600/r600_blit.c index 19071ef5413..de3a58706e6 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 );