summaryrefslogtreecommitdiffstats
path: root/src/gallium/drivers/radeonsi/si_state.h
diff options
context:
space:
mode:
authorChristian König <[email protected]>2012-07-18 12:07:20 +0200
committerChristian König <[email protected]>2012-07-24 12:29:30 +0200
commite4e6f954ae8c83251c39da4327c29ba12fca8236 (patch)
treeff9fa79a1efa6dfc65382499018b4c65bebe3fa0 /src/gallium/drivers/radeonsi/si_state.h
parent76660dfccede74782ac0d409da171ddbd61fae41 (diff)
radeonsi: move draw_info to new state handling
Signed-off-by: Christian König <[email protected]>
Diffstat (limited to 'src/gallium/drivers/radeonsi/si_state.h')
-rw-r--r--src/gallium/drivers/radeonsi/si_state.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeonsi/si_state.h b/src/gallium/drivers/radeonsi/si_state.h
index 4034f5514e2..d6c696afb85 100644
--- a/src/gallium/drivers/radeonsi/si_state.h
+++ b/src/gallium/drivers/radeonsi/si_state.h
@@ -74,6 +74,7 @@ union si_state {
struct si_pm4_state *fb_rs;
struct si_pm4_state *fb_blend;
struct si_pm4_state *dsa_stencil_ref;
+ struct si_pm4_state *draw_info;
} named;
struct si_pm4_state *array[0];
};
@@ -106,5 +107,7 @@ union si_state {
} while(0);
void si_init_state_functions(struct r600_context *rctx);
+bool si_update_draw_info_state(struct r600_context *rctx,
+ const struct pipe_draw_info *info);
#endif