gallium: stop using FABSF() macro
authorBrian Paul <brian.paul@tungstengraphics.com>
Fri, 22 Aug 2008 21:49:36 +0000 (15:49 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Fri, 22 Aug 2008 21:49:36 +0000 (15:49 -0600)
src/gallium/auxiliary/draw/draw_pipe_offset.c
src/gallium/auxiliary/draw/draw_pipe_wide_line.c

index 8f1650e55ca25fbf6c189064f0dd71dfeae85354..2f5865741c18b85ead3d81c18267daf3c1f3365e 100644 (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;
 
index 29649f57879debbda8cc7669f92866af2eff72fa..48ec2f1239c80c91973e1c72fe7fcf3eeac1b230 100644 (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;