diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-03 11:45:28 -0600 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2008-09-03 13:35:06 -0600 |
commit | ba2812f23e05c63e0ea2a042dcb788c30fcbc37f (patch) | |
tree | 4a22bfb5abcfd6ae612d5bf9a0e8ad6f148a08a8 | |
parent | 6ebf712d88e7d1da949e224b93ff12ef601f2742 (diff) |
cell: comments
-rw-r--r-- | src/gallium/drivers/cell/spu/spu_tile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/cell/spu/spu_tile.c b/src/gallium/drivers/cell/spu/spu_tile.c index 12dc246328..216a33126b 100644 --- a/src/gallium/drivers/cell/spu/spu_tile.c +++ b/src/gallium/drivers/cell/spu/spu_tile.c @@ -31,6 +31,9 @@ #include "spu_main.h" +/** + * Get tile of color or Z values from main memory, put into SPU memory. + */ void get_tile(uint tx, uint ty, tile_t *tile, int tag, int zBuf) { @@ -56,6 +59,9 @@ get_tile(uint tx, uint ty, tile_t *tile, int tag, int zBuf) } +/** + * Move tile of color or Z values from SPU memory to main memory. + */ void put_tile(uint tx, uint ty, const tile_t *tile, int tag, int zBuf) { |