Conditionally compile code for x86 specific TNL codegen. This fixes problem

with x86-64 and PowerPC.

Reported by: sublett on #dri-devel.
This commit is contained in:
Ian Romanick 2004-04-12 22:40:54 +00:00
parent 7873f85684
commit ee22ed2fb4
1 changed files with 6 additions and 0 deletions

View File

@ -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 );