diff options
Diffstat (limited to 'src/i830_render.c')
-rw-r--r-- | src/i830_render.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/i830_render.c b/src/i830_render.c index 1419043f..5046ad4f 100644 --- a/src/i830_render.c +++ b/src/i830_render.c @@ -673,13 +673,7 @@ i830_emit_composite_primitive(PixmapPtr pDst, int srcX, int srcY, num_floats = 3 * per_vertex; - BEGIN_BATCH(6 + num_floats); - - OUT_BATCH(MI_NOOP); - OUT_BATCH(MI_NOOP); - OUT_BATCH(MI_NOOP); - OUT_BATCH(MI_NOOP); - OUT_BATCH(MI_NOOP); + BEGIN_BATCH(1 + num_floats); OUT_BATCH(PRIM3D_INLINE | PRIM3D_RECTLIST | (num_floats-1)); OUT_BATCH_F(pI830->coord_adjust + dstX + w); |