From b127cfeb7a4a78d9e7da8b005fff74dff5fad4ce Mon Sep 17 00:00:00 2001 From: Keith Whitwell Date: Wed, 13 Jul 2005 17:49:22 +0000 Subject: Use the LDEXPF wrapper macro. --- src/mesa/tnl/t_vb_arbprogram.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mesa/tnl') diff --git a/src/mesa/tnl/t_vb_arbprogram.c b/src/mesa/tnl/t_vb_arbprogram.c index 13041949d1..fd7ffcd84c 100644 --- a/src/mesa/tnl/t_vb_arbprogram.c +++ b/src/mesa/tnl/t_vb_arbprogram.c @@ -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; } -- cgit v1.2.3