summaryrefslogtreecommitdiff
path: root/src/mesa/tnl/t_vtx_api.c
diff options
context:
space:
mode:
authorIan Romanick <idr@us.ibm.com>2004-04-12 22:40:54 +0000
committerIan Romanick <idr@us.ibm.com>2004-04-12 22:40:54 +0000
commitee22ed2fb4294612e3c4d5d6723e28d723bbb45e (patch)
tree25e6449d3176c8c018230f262319120fa48e62dc /src/mesa/tnl/t_vtx_api.c
parent7873f856848ce5489f05c79581e2439aaff4bae7 (diff)
Conditionally compile code for x86 specific TNL codegen. This fixes problem
with x86-64 and PowerPC. Reported by: sublett on #dri-devel.
Diffstat (limited to 'src/mesa/tnl/t_vtx_api.c')
-rw-r--r--src/mesa/tnl/t_vtx_api.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c
index 9f67c6cee7..926b277dc9 100644
--- a/src/mesa/tnl/t_vtx_api.c
+++ b/src/mesa/tnl/t_vtx_api.c
@@ -404,9 +404,11 @@ static attrfv_func do_choose( GLuint attr, GLuint sz )
/* Try to use codegen:
*/
+#ifdef USE_X86_ASM
if (tnl->AllowCodegen)
tnl->vtx.tabfv[attr][sz-1] = do_codegen( ctx, attr, sz );
else
+#endif
tnl->vtx.tabfv[attr][sz-1] = 0;
/* Else use generic version:
@@ -883,9 +885,11 @@ void _tnl_vtx_init( GLcontext *ctx )
choose[ERROR_ATTRIB][2] = error_attrib;
choose[ERROR_ATTRIB][3] = error_attrib;
+#ifdef USE_X86_ASM
if (tnl->AllowCodegen) {
_tnl_x86choosers(choose, do_choose); /* x86 INIT_CHOOSERS */
}
+#endif
_tnl_generic_attr_table_init( generic_attr_func );
}
@@ -905,9 +909,11 @@ void _tnl_vtx_init( GLcontext *ctx )
_tnl_current_init( ctx );
_tnl_exec_vtxfmt_init( ctx );
_tnl_generic_exec_vtxfmt_init( ctx );
+#ifdef USE_X86_ASM
if (tnl->AllowCodegen) {
_tnl_x86_exec_vtxfmt_init( ctx ); /* x86 DISPATCH_ATTRFV */
}
+#endif
_mesa_install_exec_vtxfmt( ctx, &tnl->exec_vtxfmt );