projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9540c9c
)
remove unneded call to _tnl_invalidate_state() in _tnl_need_projected_coords(). Conne...
author
Roland Scheidegger
<rscheidegger@gmx.ch>
Wed, 22 Nov 2006 17:54:31 +0000
(17:54 +0000)
committer
Roland Scheidegger
<rscheidegger@gmx.ch>
Wed, 22 Nov 2006 17:54:31 +0000
(17:54 +0000)
src/mesa/tnl/t_context.c
patch
|
blob
|
history
diff --git
a/src/mesa/tnl/t_context.c
b/src/mesa/tnl/t_context.c
index 55b40c0531f77421b5eea418968226f97cc6c90b..154780cc9753c574047487c5483538dae5d5347c 100644
(file)
--- 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