summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXavier Chantry <chantry.xavier@gmail.com>2010-12-19 23:17:34 +0100
committerFrancisco Jerez <currojerez@riseup.net>2010-12-25 14:48:40 +0100
commitdc89dac734167bcbc667b39ca6ee2043871a60bf (patch)
tree0106e872280027c7cb29ebceee38f5db808eba9d
parentb76b43928bf4dcf5ce3a4b58c7fefe780070c0d3 (diff)
downloadxorg-driver-xf86-video-nouveau-dc89dac734167bcbc667b39ca6ee2043871a60bf.tar.gz
nv04/exa: kill useless WAIT_RING
Signed-off-by: Francisco Jerez <currojerez@riseup.net>
-rw-r--r--src/nv04_exa.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/nv04_exa.c b/src/nv04_exa.c
index f2819d2..267c7b5 100644
--- a/src/nv04_exa.c
+++ b/src/nv04_exa.c
@@ -150,7 +150,6 @@ NV04EXASolid (PixmapPtr pPixmap, int x1, int y1, int x2, int y2)
int width = x2-x1;
int height = y2-y1;
- WAIT_RING (chan, 3);
BEGIN_RING(chan, rect,
NV04_GDI_RECTANGLE_TEXT_UNCLIPPED_RECTANGLE_POINT(0), 2);
OUT_RING (chan, (x1 << 16) | y1);
@@ -280,7 +279,6 @@ NV04EXACopy(PixmapPtr pDstPixmap, int srcX, int srcY, int dstX, int dstY,
dstY = 0;
}
- WAIT_RING (chan, 4);
BEGIN_RING(chan, blit, NV01_IMAGE_BLIT_POINT_IN, 3);
OUT_RING (chan, (srcY << 16) | srcX);
OUT_RING (chan, (dstY << 16) | dstX);