diff options
author | Keith Whitwell <keithw@vmware.com> | 2009-11-19 18:47:07 -0800 |
---|---|---|
committer | Keith Whitwell <keithw@vmware.com> | 2009-11-19 18:47:07 -0800 |
commit | c58e20fbbb87b8dbd0c58294d4ad3d297c3aa747 (patch) | |
tree | 71664ae53504971878d8a9c81956b1b73c0778f0 /src/gallium/drivers/i965 | |
parent | 7e5cd3eb14c4924e3aa6962bc244cd9fad656e43 (diff) |
i965g: fix typo in previous commit
Diffstat (limited to 'src/gallium/drivers/i965')
-rw-r--r-- | src/gallium/drivers/i965/brw_sf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/i965/brw_sf.c b/src/gallium/drivers/i965/brw_sf.c index e75f447a03..6f4502da97 100644 --- a/src/gallium/drivers/i965/brw_sf.c +++ b/src/gallium/drivers/i965/brw_sf.c @@ -129,7 +129,7 @@ static enum pipe_error upload_sf_prog(struct brw_context *brw) * another one to account for the position input. */ /* PIPE_NEW_FRAGMENT_SHADER */ - key.nr_attrs = brw->curr.vertex_shader->info.file_max[TGSI_FILE_INPUT] + 2; + key.nr_attrs = brw->curr.fragment_shader->info.file_max[TGSI_FILE_INPUT] + 2; /* XXX: this is probably where the mapping between vertex shader |