diff options
author | Roland Scheidegger <[email protected]> | 2008-03-13 12:43:53 +0100 |
---|---|---|
committer | Roland Scheidegger <[email protected]> | 2008-03-13 12:43:53 +0100 |
commit | ac06a5c16a989a871777b90b2cd24fc8a93d33e9 (patch) | |
tree | d8b6cad59694285307e0a12c33badd98f6162e35 | |
parent | ed758fee0c474d53ae1cb7fecc93af9a47ba2cd4 (diff) |
fix state.lightprod ambient/specular w value (bug #14983)
-rw-r--r-- | src/mesa/shader/prog_statevars.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/shader/prog_statevars.c b/src/mesa/shader/prog_statevars.c index 76295568ac4..05daa8011d9 100644 --- a/src/mesa/shader/prog_statevars.c +++ b/src/mesa/shader/prog_statevars.c @@ -181,7 +181,7 @@ _mesa_fetch_state(GLcontext *ctx, const gl_state_index state[], ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT+face][i]; } /* [3] = material alpha */ - value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][3]; + value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_AMBIENT+face][3]; return; case STATE_DIFFUSE: for (i = 0; i < 3; i++) { @@ -197,7 +197,7 @@ _mesa_fetch_state(GLcontext *ctx, const gl_state_index state[], ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SPECULAR+face][i]; } /* [3] = material alpha */ - value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_DIFFUSE+face][3]; + value[3] = ctx->Light.Material.Attrib[MAT_ATTRIB_FRONT_SPECULAR+face][3]; return; default: _mesa_problem(ctx, "Invalid lightprod state in fetch_state"); |