diff options
author | Brian <brian.paul@tungstengraphics.com> | 2008-02-26 08:43:07 -0700 |
---|---|---|
committer | Brian <brian.paul@tungstengraphics.com> | 2008-02-26 08:43:07 -0700 |
commit | ecd50ef58b034e604ff6b2fedbb0815953e510ea (patch) | |
tree | 1590d0b070785cc502d23f603595f984dad3819d /src/mesa/state_tracker/st_atom_shader.c | |
parent | 232a41e19faa860f083e414cb1eb38c0617e9241 (diff) |
gallium: remove input_map[] from pipe_shader_state
Diffstat (limited to 'src/mesa/state_tracker/st_atom_shader.c')
-rw-r--r-- | src/mesa/state_tracker/st_atom_shader.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/state_tracker/st_atom_shader.c b/src/mesa/state_tracker/st_atom_shader.c index b67b620eaa..10c131d554 100644 --- a/src/mesa/state_tracker/st_atom_shader.c +++ b/src/mesa/state_tracker/st_atom_shader.c @@ -227,7 +227,7 @@ find_translated_vp(struct st_context *st, if (fpInAttrib >= 0) { GLuint fpInSlot = stfp->input_to_slot[fpInAttrib]; if (fpInSlot != ~0) { - GLuint vpOutSlot = stfp->cso->state.input_map[fpInSlot]; + GLuint vpOutSlot = stfp->input_map[fpInSlot]; xvp->output_to_slot[outAttr] = vpOutSlot; numVpOuts++; } |