Use the LDEXPF wrapper macro.

This commit is contained in:
Keith Whitwell 2005-07-13 17:49:22 +00:00
parent 3f7cb794ea
commit b127cfeb7a
1 changed files with 2 additions and 2 deletions

View File

@ -279,9 +279,9 @@ static void do_EXP( struct arb_vp_machine *m, union instruction op )
GLfloat flr_tmp = FLOORF(tmp);
GLfloat frac_tmp = tmp - flr_tmp;
result[0] = ldexpf(1.0, (int)flr_tmp);
result[0] = LDEXPF(1.0, (int)flr_tmp);
result[1] = frac_tmp;
result[2] = ldexpf(rough_approx_log2_0_1(frac_tmp), (int)flr_tmp);
result[2] = LDEXPF(rough_approx_log2_0_1(frac_tmp), (int)flr_tmp);
result[3] = 1.0F;
}