gallium: disable the codegen for TGSI_OPCODE_EXPBASE2 for now.

The x86 code seems to fail for exponents of 4 or larger.
See glean's vertProg1/EX2 test.
This commit is contained in:
Brian Paul 2008-06-12 16:01:43 -06:00
parent 08f1b8ac70
commit 20ee00754d

View file

@ -1662,7 +1662,14 @@ emit_instruction( struct aos_compilation *cp,
return emit_RND(cp, inst);
case TGSI_OPCODE_EXPBASE2:
#if 0
/* this seems to fail for "larger" exponents.
* See glean tvertProg1's EX2 test.
*/
return emit_EX2(cp, inst);
#else
return FALSE;
#endif
case TGSI_OPCODE_LOGBASE2:
return emit_LG2(cp, inst);