mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-06-21 16:48:22 +02:00
965 / GLSL: Use full precision for EXP instruction
The partial precision mode doesn't have quite enough bits of precision to pass conformance tests.
This commit is contained in:
parent
962fa6bbc1
commit
7e04272690
1 changed files with 1 additions and 1 deletions
|
|
@ -420,7 +420,7 @@ static void emit_exp_noalias( struct brw_vs_compile *c,
|
|||
BRW_MATH_FUNCTION_EXP,
|
||||
brw_writemask(dst, WRITEMASK_Z),
|
||||
brw_swizzle1(arg0, 0),
|
||||
BRW_MATH_PRECISION_PARTIAL);
|
||||
BRW_MATH_PRECISION_FULL);
|
||||
}
|
||||
|
||||
if (dst.dw1.bits.writemask & WRITEMASK_W) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue