diff options
author | Chia-I Wu <[email protected]> | 2014-09-20 11:21:20 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2014-09-20 11:29:40 +0800 |
commit | 8b4726d32e2ac28360641c40650630d6c6317133 (patch) | |
tree | 30645025e79a3913d309230606f9524f816f4497 /src/gallium/drivers/ilo/ilo_3d.h | |
parent | bca549691eec731dca9381b457403bcdd662ef9d (diff) |
ilo: add a helper for RECTLIST blitter
Add ilo_3d_draw_rectlist() for use by RECTLIST blitter.
Diffstat (limited to 'src/gallium/drivers/ilo/ilo_3d.h')
-rw-r--r-- | src/gallium/drivers/ilo/ilo_3d.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/ilo/ilo_3d.h b/src/gallium/drivers/ilo/ilo_3d.h index ccc57cd12a7..ff3a59e3584 100644 --- a/src/gallium/drivers/ilo/ilo_3d.h +++ b/src/gallium/drivers/ilo/ilo_3d.h @@ -32,6 +32,7 @@ #include "ilo_cp.h" struct ilo_3d_pipeline; +struct ilo_blitter; struct ilo_context; struct ilo_query; @@ -69,7 +70,7 @@ void ilo_3d_cp_submitted(struct ilo_3d *hw3d); void -ilo_3d_own_render_ring(struct ilo_3d *hw3d); +ilo_3d_draw_rectlist(struct ilo_3d *hw3d, const struct ilo_blitter *blitter); void ilo_3d_begin_query(struct ilo_context *ilo, struct ilo_query *q); |