diff options
Diffstat (limited to 'src/mesa/tnl')
| -rw-r--r-- | src/mesa/tnl/t_context.c | 5 | 
1 files changed, 1 insertions, 4 deletions
| diff --git a/src/mesa/tnl/t_context.c b/src/mesa/tnl/t_context.c index 55b40c0531..154780cc97 100644 --- a/src/mesa/tnl/t_context.c +++ b/src/mesa/tnl/t_context.c @@ -246,10 +246,7 @@ void  _tnl_need_projected_coords( GLcontext *ctx, GLboolean mode )  {     TNLcontext *tnl = TNL_CONTEXT(ctx); -   if (tnl->NeedNdcCoords != mode) { -      tnl->NeedNdcCoords = mode; -      _tnl_InvalidateState( ctx, _NEW_PROJECTION ); -   } +   tnl->NeedNdcCoords = mode;  }  void | 
