Home
last modified time | relevance | path

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

/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c1786 GLfloat Py2 = uy * uy + vy * vy; /* squared length of dy */ in sample_2d_footprint() local
1797 if (Px2 > Py2) { in sample_2d_footprint()
1803 numSamples = ceil(SQRTF(Py2)); in sample_2d_footprint()
1924 GLfloat Py2 = dudy * dudy + dvdy * dvdy; in sample_lambda_2d_aniso() local
1935 if (Px2 < Py2) { in sample_lambda_2d_aniso()
1936 Pmax2 = Py2; in sample_lambda_2d_aniso()
1941 Pmin2 = Py2; in sample_lambda_2d_aniso()
/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c1840 float Py2 = dudy * dudy + dvdy * dvdy; in mip_filter_linear_aniso() local
1847 if (Px2 < Py2) { in mip_filter_linear_aniso()
1848 Pmax2 = Py2; in mip_filter_linear_aniso()
1853 Pmin2 = Py2; in mip_filter_linear_aniso()