Home
last modified time | relevance | path

Searched refs:rmin2 (Results 1 – 2 of 2) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_points.c308 const GLfloat rmin2 = MAX2(0.0F, rmin * rmin); in smooth_point() local
310 const GLfloat cscale = 1.0F / (rmax2 - rmin2); in smooth_point()
332 if (dist2 >= rmin2) { in smooth_point()
334 coverage = 1.0F - (dist2 - rmin2) * cscale; in smooth_point()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_setup.c1336 const float rmin2 = MAX2(0.0F, rmin * rmin); in sp_setup_point() local
1338 const float cscale = 1.0F / (rmax2 - rmin2); in sp_setup_point()
1351 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1360 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1369 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()
1378 cover = 1.0F - (dist2 - rmin2) * cscale; in sp_setup_point()