diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-30 11:56:14 -0700 |
---|---|---|
committer | Ben Skeggs <skeggsb@gmail.com> | 2008-02-15 13:50:25 +1100 |
commit | 69099004e62b8710bc0b360fd2938439b34c0079 (patch) | |
tree | 1286880da8286cf4c07c6bc22cdef7d346f6ac25 | |
parent | ae6949659693385be2ccd4290338b58038ed8125 (diff) |
Cell: check tile status before wait_on_mask()
-rw-r--r-- | src/mesa/pipe/cell/spu/spu_tri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/pipe/cell/spu/spu_tri.c b/src/mesa/pipe/cell/spu/spu_tri.c index 7c6a54134f..01a47a4851 100644 --- a/src/mesa/pipe/cell/spu/spu_tri.c +++ b/src/mesa/pipe/cell/spu/spu_tri.c @@ -278,7 +278,7 @@ do_depth_test(struct setup_stage *setup, int x, int y, unsigned mask) /* now, _really_ clear the tile */ clear_z_tile(&ztile); } - else { + else if (tile_status_z[setup->ty][setup->tx] != TILE_STATUS_DIRTY) { /* make sure we've got the tile from main mem */ wait_on_mask(1 << TAG_READ_TILE_Z); } @@ -403,7 +403,7 @@ emit_quad( struct setup_stage *setup, int x, int y, unsigned mask ) /* now, _really_ clear the tile */ clear_c_tile(&ctile); } - else { + else if (tile_status[setup->ty][setup->tx] != TILE_STATUS_DIRTY) { /* make sure we've got the tile from main mem */ wait_on_mask(1 << TAG_READ_TILE_COLOR); } |