diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-01-12 16:58:50 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-01-12 16:58:50 -0700 |
commit | a511200e5f0c384e68258879bab76563d8e01f01 (patch) | |
tree | 982eb3189a0b145ab36c88dc1377ff5674479ff6 /src/mesa/pipe/cell/spu/spu_tile.h | |
parent | 8b1bfd1d27989c9a880ce269d56ea1dfd88a5811 (diff) |
Cell: remove fb parameter to get/put_tile()
Diffstat (limited to 'src/mesa/pipe/cell/spu/spu_tile.h')
-rw-r--r-- | src/mesa/pipe/cell/spu/spu_tile.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/mesa/pipe/cell/spu/spu_tile.h b/src/mesa/pipe/cell/spu/spu_tile.h index 2ad469b584..637923764b 100644 --- a/src/mesa/pipe/cell/spu/spu_tile.h +++ b/src/mesa/pipe/cell/spu/spu_tile.h @@ -52,12 +52,10 @@ extern ubyte tile_status_z[MAX_HEIGHT/TILE_SIZE][MAX_WIDTH/TILE_SIZE] ALIGN16_AT void -get_tile(const struct framebuffer *fb, uint tx, uint ty, uint *tile, - int tag, int zBuf); +get_tile(uint tx, uint ty, uint *tile, int tag, int zBuf); void -put_tile(const struct framebuffer *fb, uint tx, uint ty, const uint *tile, - int tag, int zBuf); +put_tile(uint tx, uint ty, const uint *tile, int tag, int zBuf); void clear_tile(uint tile[TILE_SIZE][TILE_SIZE], uint value); |