summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2004-04-20 10:28:15 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2004-04-20 10:28:15 +0000
commit319f5fd5ec85b4ca845028e6cdb94cca0a00d3d5 (patch)
tree9fa54545bc4a9adbc718e134bc61450cd2ddb299 /src/mesa/tnl
parent30a8a0b8fa9e66efb97aef630765e4cdf6d9cb68 (diff)
Simplify last fix slightly, apply to vtx paths as well.
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_save_api.c5
-rw-r--r--src/mesa/tnl/t_vtx_api.c13
2 files changed, 10 insertions, 8 deletions
diff --git a/src/mesa/tnl/t_save_api.c b/src/mesa/tnl/t_save_api.c
index dce84e212c..f0f573c090 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;
}
}
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c
index 52036aa996..7eccacc504 100644
--- a/src/mesa/tnl/t_vtx_api.c
+++ b/src/mesa/tnl/t_vtx_api.c
@@ -275,10 +275,15 @@ static void _tnl_wrap_upgrade_vertex( GLcontext *ctx,
for (j = 0 ; j < _TNL_ATTRIB_MAX ; j++) {
if (tnl->vtx.attrsz[j]) {
if (j == attr) {
- COPY_SZ_4V( dest, newsz, tnl->vtx.current[j] );
- COPY_SZ_4V( dest, oldsz, data );
- data += oldsz;
- dest += newsz;
+ if (oldsz) {
+ ASSIGN_4V( dest, 0, 0, 0, 1 );
+ COPY_SZ_4V( dest, oldsz, data );
+ data += oldsz;
+ dest += newsz;
+ } else {
+ COPY_SZ_4V( dest, newsz, tnl->vtx.current[j] );
+ dest += newsz;
+ }
}
else {
GLuint sz = tnl->vtx.attrsz[j];