diff options
author | Zack Rusin <zackr@vmware.com> | 2009-07-11 13:48:41 -0400 |
---|---|---|
committer | Zack Rusin <zackr@vmware.com> | 2009-07-11 13:48:41 -0400 |
commit | 1c1307e7c55844f63f7bd7ac02c64f4b936f3c66 (patch) | |
tree | de80e640f567283f32379fc7b28d2c8e04d89e5a | |
parent | cff2126f522bb511216f64427b3060467e266f8a (diff) |
gallium: compare the actual register, not all the inputs
otherwise we decrement indexes for all registers
-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 5219119c81..8b3bb5cc03 100644 --- a/src/mesa/state_tracker/st_atom_shader.c +++ b/src/mesa/state_tracker/st_atom_shader.c @@ -139,7 +139,7 @@ find_translated_vp(struct st_context *st, if (fragInputsRead & (1 << inAttr)) { stfp->input_to_slot[inAttr] = numIn; numIn++; - if ((fragInputsRead & FRAG_BIT_FOGC)) { + if (((1 << inAttr) & FRAG_BIT_FOGC)) { /* leave placeholders for the * extra registers we extract from fog */ if (stfp->Base.UsesFrontFacing) { |