fix bug causing unnecessary translations
authorBrian <brian.paul@tungstengraphics.com>
Sat, 29 Sep 2007 02:31:24 +0000 (20:31 -0600)
committerBrian <brian.paul@tungstengraphics.com>
Sat, 29 Sep 2007 02:31:24 +0000 (20:31 -0600)
src/mesa/state_tracker/st_atom_shader.c

index d7a89d1..0a905fb 100644 (file)
@@ -183,7 +183,7 @@ find_translated_vp(struct st_context *st,
     * XXX This could be a hash lookup, using InputsRead as the key.
     */
    for (xvp = stfp->vertex_programs; xvp; xvp = xvp->next) {
-      if (xvp->frag_inputs == stfp->Base.Base.InputsRead) {
+      if (xvp->frag_inputs == fragInputsRead) {
          break;
       }
    }