summaryrefslogtreecommitdiff
path: root/src/mesa/tnl
diff options
context:
space:
mode:
authorDaniel Borca <dborca@users.sourceforge.net>2004-11-01 08:49:55 +0000
committerDaniel Borca <dborca@users.sourceforge.net>2004-11-01 08:49:55 +0000
commit95e2a8099ba162b17479b0425e3f3bfdf9f22c29 (patch)
tree4f5bb235a0bdbcde51233390ef922c7402f54090 /src/mesa/tnl
parente14119f143c42621f96754c0e086c627f4731191 (diff)
small aesthetic correction
Diffstat (limited to 'src/mesa/tnl')
-rw-r--r--src/mesa/tnl/t_vtx_x86.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/tnl/t_vtx_x86.c b/src/mesa/tnl/t_vtx_x86.c
index 59a869879a..37530f4940 100644
--- a/src/mesa/tnl/t_vtx_x86.c
+++ b/src/mesa/tnl/t_vtx_x86.c
@@ -174,10 +174,11 @@ static struct _tnl_dynfn *makeX86Vertex2fv( GLcontext *ctx, int vertex_size )
static struct _tnl_dynfn *makeX86Vertex3fv( GLcontext *ctx, int vertex_size )
{
TNLcontext *tnl = TNL_CONTEXT(ctx);
- DFN ( _tnl_x86_Vertex3fv, tnl->vtx.cache.Vertex[3-1], vertex_size );
switch (vertex_size) {
default: {
+ DFN ( _tnl_x86_Vertex3fv, tnl->vtx.cache.Vertex[3-1], vertex_size );
+
FIXUP(dfn->code, 0, 0, (int)&tnl->vtx.vbptr);
FIXUP(dfn->code, 0, 1, vertex_size - 3);
FIXUP(dfn->code, 0, 2, (int)&tnl->vtx.vertex[3]);