mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-08 09:08:10 +02:00
gallium: stop using FABSF() macro
This commit is contained in:
parent
1a46dcc8a9
commit
120270def7
2 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue