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

  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 2257 /* tex_u = -0.5f * s[j] * texture->width0 * scaling */
2258 LLVMValueRef tex_u = lp_build_mul(coord_bld, coords[0], width0); local
2259 tex_u = lp_build_add(coord_bld, tex_u, lp_build_const_vec(gallivm, coord_bld->type, -0.5f));
2265 /* const int u0 = (int) floorf(tex_u - box_u); */
2266 LLVMValueRef u0 = lp_build_itrunc(coord_bld, lp_build_floor(coord_bld, lp_build_sub(coord_bld, tex_u, box_u)));
2267 /* const int u1 = (int) ceilf(tex_u + box_u); */
2268 LLVMValueRef u1 = lp_build_itrunc(coord_bld, lp_build_ceil(coord_bld, lp_build_add(coord_bld, tex_u, box_u)));
2275 /* const float U = u0 - tex_u; */
2276 LLVMValueRef U = lp_build_sub(coord_bld, lp_build_int_to_float(coord_bld, u0), tex_u);
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 2414 const float tex_u = -0.5F + s[j] * texture->width0 * scaling; local
2417 const int u0 = (int) floorf(tex_u - box_u);
2418 const int u1 = (int) ceilf(tex_u + box_u);
2421 const float U = u0 - tex_u;
  /xsrc/external/mit/MesaLib/dist/src/mesa/swrast/
s_texfilter.c 1661 GLfloat tex_u = -0.5f + texcoord[0] * swImg->WidthScale * scaling; local
1685 GLint u0 = (GLint) floorf(tex_u - box_u);
1686 GLint u1 = (GLint) ceilf (tex_u + box_u);
1694 GLfloat U = u0 - tex_u;
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 2400 const float tex_u = -0.5F + s[j] * texture->width0 * scaling; local
2403 const int u0 = (int) floorf(tex_u - box_u);
2404 const int u1 = (int) ceilf(tex_u + box_u);
2407 const float U = u0 - tex_u;
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/swrast/
s_texfilter.c 1661 GLfloat tex_u = -0.5f + texcoord[0] * swImg->WidthScale * scaling; local
1685 GLint u0 = (GLint) floorf(tex_u - box_u);
1686 GLint u1 = (GLint) ceilf (tex_u + box_u);
1694 GLfloat U = u0 - tex_u;

Completed in 19 milliseconds