summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/cell/spu/main.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-03 09:56:48 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-03 09:56:48 -0700
commit5e00ae3fea51afd5de14d559f693645837b3903b (patch)
treea6599207463fdba5ea45fb81403d7d2284d54d29 /src/mesa/pipe/cell/spu/main.h
parent3ffef8de825f843ed504a8177fd08af9196be696 (diff)
Cell: initial work for getting/putting Z tiles
Diffstat (limited to 'src/mesa/pipe/cell/spu/main.h')
-rw-r--r--src/mesa/pipe/cell/spu/main.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mesa/pipe/cell/spu/main.h b/src/mesa/pipe/cell/spu/main.h
index 60a565bfa7..c22679c5d9 100644
--- a/src/mesa/pipe/cell/spu/main.h
+++ b/src/mesa/pipe/cell/spu/main.h
@@ -49,7 +49,8 @@ struct framebuffer {
extern struct framebuffer fb;
-extern uint tile[TILE_SIZE][TILE_SIZE] ALIGN16_ATTRIB;
+extern uint ctile[TILE_SIZE][TILE_SIZE] ALIGN16_ATTRIB;
+extern uint ztile[TILE_SIZE][TILE_SIZE] ALIGN16_ATTRIB;
extern int DefaultTag;
@@ -59,11 +60,11 @@ wait_on_mask(unsigned tag);
void
get_tile(const struct framebuffer *fb, uint tx, uint ty, uint *tile,
- int tag);
+ int tag, int zBuf);
void
put_tile(const struct framebuffer *fb, uint tx, uint ty, const uint *tile,
- int tag);
+ int tag, int zBuf);
#endif /* MAIN_H */