From 94922b9d2d801b780b00b030d4ec60381c2eef26 Mon Sep 17 00:00:00 2001 From: Daniel Borca Date: Fri, 2 Apr 2004 09:12:42 +0000 Subject: disabled naughty cheats and protected the choosers behind AllowCodeGen --- src/mesa/tnl/t_vtx_api.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/mesa/tnl/t_vtx_api.c') diff --git a/src/mesa/tnl/t_vtx_api.c b/src/mesa/tnl/t_vtx_api.c index f47114cf62..26403fc8ef 100644 --- a/src/mesa/tnl/t_vtx_api.c +++ b/src/mesa/tnl/t_vtx_api.c @@ -883,7 +883,9 @@ void _tnl_vtx_init( GLcontext *ctx ) choose[ERROR_ATTRIB][2] = error_attrib; choose[ERROR_ATTRIB][3] = error_attrib; - _tnl_x86choosers(choose, do_choose); /* x86 INIT_CHOOSERS */ + if (tnl->AllowCodegen) { + _tnl_x86choosers(choose, do_choose); /* x86 INIT_CHOOSERS */ + } _tnl_generic_attr_table_init( generic_attr_func ); } -- cgit v1.2.3