mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-25 01:48:18 +02:00
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:
parent
08f1b8ac70
commit
20ee00754d
1 changed files with 7 additions and 0 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue