diff options
author | Keith Whitwell <[email protected]> | 2004-04-20 10:28:15 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2004-04-20 10:28:15 +0000 |
commit | 319f5fd5ec85b4ca845028e6cdb94cca0a00d3d5 (patch) | |
tree | 9fa54545bc4a9adbc718e134bc61450cd2ddb299 /src/mesa/tnl/t_save_api.c | |
parent | 30a8a0b8fa9e66efb97aef630765e4cdf6d9cb68 (diff) |
Simplify last fix slightly, apply to vtx paths as well.
Diffstat (limited to 'src/mesa/tnl/t_save_api.c')
-rw-r--r-- | src/mesa/tnl/t_save_api.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/mesa/tnl/t_save_api.c b/src/mesa/tnl/t_save_api.c index dce84e212cd..f0f573c0904 100644 --- a/src/mesa/tnl/t_save_api.c +++ b/src/mesa/tnl/t_save_api.c @@ -503,10 +503,7 @@ static void _save_upgrade_vertex( GLcontext *ctx, dest += newsz; } else { - GLuint currentsz = tnl->save.currentsz[attr][0]; - GLfloat *current = tnl->save.current[attr]; - ASSIGN_4V( dest, 0, 0, 0, 1 ); - COPY_SZ_4V( dest, currentsz, current ); + COPY_SZ_4V( dest, newsz, tnl->save.current[attr] ); dest += newsz; } } |