diff options
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; } } |