Home | History | Annotate | Download | only in agg23

Lines Matching refs:FX_FLOAT

38     const FX_FLOAT nearzero = 1e-30f;
39 FX_FLOAT deltax = (FX_FLOAT)(x2 - x1);
40 FX_FLOAT deltay = (FX_FLOAT)(y2 - y1);
45 FX_FLOAT xin, xout;
47 xin = (FX_FLOAT)clip_box.x1;
48 xout = (FX_FLOAT)clip_box.x2;
50 xin = (FX_FLOAT)clip_box.x2;
51 xout = (FX_FLOAT)clip_box.x1;
53 FX_FLOAT tinx = FXSYS_Div(xin - x1, deltax);
57 FX_FLOAT yin, yout;
59 yin = (FX_FLOAT)clip_box.y1;
60 yout = (FX_FLOAT)clip_box.y2;
62 yin = (FX_FLOAT)clip_box.y2;
63 yout = (FX_FLOAT)clip_box.y1;
65 FX_FLOAT tiny = FXSYS_Div(yin - y1, deltay);
66 FX_FLOAT tin1, tin2;
81 FX_FLOAT toutx = FXSYS_Div(xout - x1, deltax);
82 FX_FLOAT touty = FXSYS_Div(yout - y1, deltay);
83 FX_FLOAT tout1 = (toutx < touty) ? toutx : touty;