HomeSort by: relevance | last modified time | path
    Searched refs:formScale (Results 1 - 5 of 5) sorted by relevancy

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 2391 const double formScale = (double) (WEIGHT_LUT_SIZE - 1) / F;
2392 A *= formScale;
2393 B *= formScale;
2394 C *= formScale;
2395 /* F *= formScale; */ /* no need to scale F as we don't use it below here */
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_texfilter.c 1700 GLfloat formScale = (GLfloat) (WEIGHT_LUT_SIZE - 1) / F;
1701 A *= formScale;
1702 B *= formScale;
1703 C *= formScale;
1704 /* F *= formScale; */ /* no need to scale F as we don't use it below here */
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 2386 const double formScale = (double) (WEIGHT_LUT_SIZE - 1) / F;
2387 A *= formScale;
2388 B *= formScale;
2389 C *= formScale;
2390 /* F *= formScale; */ /* no need to scale F as we don't use it below here */
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_texfilter.c 1700 GLfloat formScale = (GLfloat) (WEIGHT_LUT_SIZE - 1) / F;
1701 A *= formScale;
1702 B *= formScale;
1703 C *= formScale;
1704 /* F *= formScale; */ /* no need to scale F as we don't use it below here */
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 2228 LLVMValueRef formScale = lp_build_div(coord_bld, lp_build_const_vec(gallivm, coord_bld->type, WEIGHT_LUT_SIZE - 1), F);
2230 A = lp_build_mul(coord_bld, A, formScale);
2231 B = lp_build_mul(coord_bld, B, formScale);
2232 C = lp_build_mul(coord_bld, C, formScale);
2233 /* F *= formScale; */ /* no need to scale F as we don't use it below here */

Completed in 35 milliseconds