diff options
author | Keith Whitwell <[email protected]> | 2008-05-30 14:47:38 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-05-30 17:49:10 +0100 |
commit | 63faab0150c3394bd9532e621947d2a31b9712ea (patch) | |
tree | c36205723e35d41e1a4e537263f8020aa4bef23f /src/mesa/main/light.c | |
parent | df7d1ee2a5270be2d329fd0614a608357917bb74 (diff) |
mesa: undo accidental setting of _ForceEyeCoords
Diffstat (limited to 'src/mesa/main/light.c')
-rw-r--r-- | src/mesa/main/light.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/main/light.c b/src/mesa/main/light.c index 0af647e13c0..f9715b4865c 100644 --- a/src/mesa/main/light.c +++ b/src/mesa/main/light.c @@ -1357,7 +1357,7 @@ _mesa_init_lighting( GLcontext *ctx ) /* Miscellaneous */ ctx->Light._NeedEyeCoords = GL_FALSE; ctx->_NeedEyeCoords = GL_FALSE; - ctx->_ForceEyeCoords = GL_TRUE; + ctx->_ForceEyeCoords = GL_FALSE; ctx->_ModelViewInvScale = 1.0; } |