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

  /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 131 * \param icoord returns the integer texcoords
134 wrap_nearest_repeat(float s, unsigned size, int offset, int *icoord)
139 *icoord = repeat(i + offset, size);
144 wrap_nearest_clamp(float s, unsigned size, int offset, int *icoord)
151 *icoord = 0;
153 *icoord = size - 1;
155 *icoord = util_ifloor(s);
160 wrap_nearest_clamp_to_edge(float s, unsigned size, int offset, int *icoord)
171 *icoord = 0;
173 *icoord = size - 1
    [all...]
sp_tex_sample.h 42 int *icoord);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/softpipe/
sp_tex_sample.c 131 * \param icoord returns the integer texcoords
134 wrap_nearest_repeat(float s, unsigned size, int offset, int *icoord)
139 *icoord = repeat(i + offset, size);
144 wrap_nearest_clamp(float s, unsigned size, int offset, int *icoord)
151 *icoord = 0;
153 *icoord = size - 1;
155 *icoord = util_ifloor(s);
160 wrap_nearest_clamp_to_edge(float s, unsigned size, int offset, int *icoord)
171 *icoord = 0;
173 *icoord = size - 1
    [all...]
sp_tex_sample.h 42 int *icoord);
  /xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 688 LLVMValueRef icoord; local
694 icoord = lp_build_ifloor(coord_bld, coord);
696 icoord = lp_build_add(int_coord_bld, icoord, offset);
698 icoord = LLVMBuildAnd(builder, icoord, length_minus_one, "");
709 icoord = lp_build_itrunc(coord_bld, coord);
726 icoord = lp_build_itrunc(coord_bld, coord);
729 icoord = lp_build_clamp(int_coord_bld, icoord, int_coord_bld->zero
    [all...]
  /xsrc/external/mit/MesaLib/dist/src/gallium/auxiliary/gallivm/
lp_bld_sample_soa.c 698 LLVMValueRef icoord; local
704 icoord = lp_build_ifloor(coord_bld, coord);
706 icoord = lp_build_add(int_coord_bld, icoord, offset);
708 icoord = LLVMBuildAnd(builder, icoord, length_minus_one, "");
719 icoord = lp_build_itrunc(coord_bld, coord);
736 icoord = lp_build_itrunc(coord_bld, coord);
739 icoord = lp_build_clamp(int_coord_bld, icoord, int_coord_bld->zero
    [all...]

Completed in 14 milliseconds