summaryrefslogtreecommitdiff
path: root/src/mesa/pipe/cell/ppu/cell_batch.h
diff options
context:
space:
mode:
authorBrian <brian.paul@tungstengraphics.com>2008-01-11 16:08:53 -0700
committerBrian <brian.paul@tungstengraphics.com>2008-01-11 16:08:53 -0700
commit8dd678208e4dcd90e07dc271d11d73d87465e0fd (patch)
tree6d7b4240f016f85674aca918bf0d3ca3afcd606a /src/mesa/pipe/cell/ppu/cell_batch.h
parent08c2571fb48d41731c81cc402acabf709523c831 (diff)
Cell: basic batch buffer working
Diffstat (limited to 'src/mesa/pipe/cell/ppu/cell_batch.h')
-rw-r--r--src/mesa/pipe/cell/ppu/cell_batch.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/pipe/cell/ppu/cell_batch.h b/src/mesa/pipe/cell/ppu/cell_batch.h
index 02d7edf8b9..7a5c6392d7 100644
--- a/src/mesa/pipe/cell/ppu/cell_batch.h
+++ b/src/mesa/pipe/cell/ppu/cell_batch.h
@@ -30,11 +30,17 @@
#define CELL_BATCH_H
+struct cell_context;
+
+
extern void
cell_batch_flush(struct cell_context *cell);
extern void
cell_batch_append(struct cell_context *cell, const void *cmd, uint length);
+extern void *
+cell_batch_alloc(struct cell_context *cell, uint bytes);
+
#endif /* CELL_BATCH_H */