diff options
author | Brian Paul <[email protected]> | 2003-09-02 13:36:03 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-02 13:36:03 +0000 |
commit | 0d4da529bd2012469ea620cb13f0ab18b3f99bbe (patch) | |
tree | cced1421f3a6fac61fee5d5fc880404cf4304a5f /src | |
parent | b3680df593acc113fbbd1cef92baf441276ace31 (diff) |
fix fog.End error
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/main/program.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/program.c b/src/mesa/main/program.c index 07ab420bcf7..fe816e344b7 100644 --- a/src/mesa/main/program.c +++ b/src/mesa/main/program.c @@ -590,7 +590,7 @@ _mesa_fetch_state(GLcontext *ctx, const enum state_index state[], value[0] = ctx->Fog.Density; value[1] = ctx->Fog.Start; value[2] = ctx->Fog.End; - value[3] = 1.0F / (ctx->Fog.End - ctx->Fog.End); + value[3] = 1.0F / (ctx->Fog.End - ctx->Fog.Start); return; case STATE_CLIPPLANE: { |