summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/i965/brw_sf.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-11-19 18:55:18 -0800
committerKeith Whitwell <keithw@vmware.com>2009-11-19 18:55:18 -0800
commit47cef2bb8f5979ae690e89943f83060999a29a55 (patch)
tree55c7d53fc062717a0ac3f21d1437907129b1a048 /src/gallium/drivers/i965/brw_sf.c
parentc58e20fbbb87b8dbd0c58294d4ad3d297c3aa747 (diff)
i965g: add new state flag tracking fs signature changes
Diffstat (limited to 'src/gallium/drivers/i965/brw_sf.c')
-rw-r--r--src/gallium/drivers/i965/brw_sf.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/gallium/drivers/i965/brw_sf.c b/src/gallium/drivers/i965/brw_sf.c
index 6f4502da97..aa2ab5098c 100644
--- a/src/gallium/drivers/i965/brw_sf.c
+++ b/src/gallium/drivers/i965/brw_sf.c
@@ -125,11 +125,10 @@ static enum pipe_error upload_sf_prog(struct brw_context *brw)
/* Populate the key, noting state dependencies:
*/
- /* XXX: Add one to turn the max value into a count, then add
- * another one to account for the position input.
+ /* XXX: Add one to account for the position input.
*/
- /* PIPE_NEW_FRAGMENT_SHADER */
- key.nr_attrs = brw->curr.fragment_shader->info.file_max[TGSI_FILE_INPUT] + 2;
+ /* PIPE_NEW_FRAGMENT_SIGNATURE */
+ key.nr_attrs = brw->curr.fragment_shader->signature.nr_inputs + 1;
/* XXX: this is probably where the mapping between vertex shader
@@ -194,7 +193,7 @@ static enum pipe_error upload_sf_prog(struct brw_context *brw)
const struct brw_tracked_state brw_sf_prog = {
.dirty = {
- .mesa = (PIPE_NEW_RAST | PIPE_NEW_VERTEX_SHADER),
+ .mesa = (PIPE_NEW_RAST | PIPE_NEW_FRAGMENT_SIGNATURE),
.brw = (BRW_NEW_REDUCED_PRIMITIVE),
.cache = 0
},