diff options
author | Felix Kuehling <[email protected]> | 2005-01-21 01:39:09 +0000 |
---|---|---|
committer | Felix Kuehling <[email protected]> | 2005-01-21 01:39:09 +0000 |
commit | fa15f6c840bcab5a37e42bca4b80668024352c98 (patch) | |
tree | f126b062ea8e9cfb4ef10daec083c7df895dab82 /src/mesa/drivers/dri/savage/savagespan.c | |
parent | 677d1d07c41050e7474f44c592641b14ffd73e8c (diff) |
Small cleanup:
* Remove some unused (mostly empty) functions
* Added context parameter to WAIT_IDLE_EMPTY[_LOCKED] for consistency
* Added debug messages to WAIT_IDLE_EMPTY[_LOCKED]
* Don't flush empty command buffers
Diffstat (limited to 'src/mesa/drivers/dri/savage/savagespan.c')
-rw-r--r-- | src/mesa/drivers/dri/savage/savagespan.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mesa/drivers/dri/savage/savagespan.c b/src/mesa/drivers/dri/savage/savagespan.c index 417fd3864cd..8af0384b445 100644 --- a/src/mesa/drivers/dri/savage/savagespan.c +++ b/src/mesa/drivers/dri/savage/savagespan.c @@ -259,7 +259,7 @@ savageCopyPixels( GLcontext *ctx, { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); FLUSH_BATCH(imesa); - WAIT_IDLE_EMPTY; + WAIT_IDLE_EMPTY(imesa); _swrast_CopyPixels(ctx, srcx, srcy, width, height, destx, desty, type); } static void @@ -272,7 +272,7 @@ savageDrawPixels( GLcontext *ctx, { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); FLUSH_BATCH(imesa); - WAIT_IDLE_EMPTY; + WAIT_IDLE_EMPTY(imesa); _swrast_DrawPixels(ctx, x, y, width, height, format, type, packing, pixels); } static void @@ -284,7 +284,7 @@ savageReadPixels( GLcontext *ctx, { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); FLUSH_BATCH(imesa); - WAIT_IDLE_EMPTY; + WAIT_IDLE_EMPTY(imesa); _swrast_ReadPixels(ctx, x, y, width, height, format, type, packing, pixels); } @@ -295,7 +295,7 @@ static void savageSpanRenderStart( GLcontext *ctx ) { savageContextPtr imesa = SAVAGE_CONTEXT(ctx); FLUSH_BATCH(imesa); - WAIT_IDLE_EMPTY; + WAIT_IDLE_EMPTY(imesa); } |