gallium: stop using FABSF() macro

This commit is contained in:
Brian Paul 2008-08-22 15:49:36 -06:00
parent 1a46dcc8a9
commit 120270def7
2 changed files with 4 additions and 4 deletions

View file

@ -84,8 +84,8 @@ static void do_offset_tri( struct draw_stage *stage,
float a = ey*fz - ez*fy;
float b = ez*fx - ex*fz;
float dzdx = FABSF(a * inv_det);
float dzdy = FABSF(b * inv_det);
float dzdx = fabsf(a * inv_det);
float dzdy = fabsf(b * inv_det);
float zoffset = offset->units + MAX2(dzdx, dzdy) * offset->scale;

View file

@ -73,8 +73,8 @@ static void wideline_line( struct draw_stage *stage,
float *pos2 = v2->data[pos];
float *pos3 = v3->data[pos];
const float dx = FABSF(pos0[0] - pos2[0]);
const float dy = FABSF(pos0[1] - pos2[1]);
const float dx = fabsf(pos0[0] - pos2[0]);
const float dy = fabsf(pos0[1] - pos2[1]);
/* small tweak to meet GL specification */
const float bias = 0.125f;