Home
last modified time | relevance | path

Searched refs:icoord (Results 1 - 3 of 3) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_tex_sample.c131 * \param icoord returns the integer texcoords
134 wrap_nearest_repeat(float s, unsigned size, int offset, int *icoord) in wrap_nearest_repeat() argument
139 *icoord = repeat(i + offset, size); in wrap_nearest_repeat()
144 wrap_nearest_clamp(float s, unsigned size, int offset, int *icoord) in wrap_nearest_clamp() argument
151 *icoord = 0; in wrap_nearest_clamp()
153 *icoord = size - 1; in wrap_nearest_clamp()
155 *icoord = util_ifloor(s); in wrap_nearest_clamp()
160 wrap_nearest_clamp_to_edge(float s, unsigned size, int offset, int *icoord) in wrap_nearest_clamp_to_edge() argument
171 *icoord = 0; in wrap_nearest_clamp_to_edge()
173 *icoord in wrap_nearest_clamp_to_edge()
180 wrap_nearest_clamp_to_border(float s, unsigned size, int offset, int *icoord) wrap_nearest_clamp_to_border() argument
198 wrap_nearest_mirror_repeat(float s, unsigned size, int offset, int *icoord) wrap_nearest_mirror_repeat() argument
220 wrap_nearest_mirror_clamp(float s, unsigned size, int offset, int *icoord) wrap_nearest_mirror_clamp() argument
235 wrap_nearest_mirror_clamp_to_edge(float s, unsigned size, int offset, int *icoord) wrap_nearest_mirror_clamp_to_edge() argument
253 wrap_nearest_mirror_clamp_to_border(float s, unsigned size, int offset, int *icoord) wrap_nearest_mirror_clamp_to_border() argument
417 wrap_nearest_unorm_clamp(float s, unsigned size, int offset, int *icoord) wrap_nearest_unorm_clamp() argument
428 wrap_nearest_unorm_clamp_to_border(float s, unsigned size, int offset, int *icoord) wrap_nearest_unorm_clamp_to_border() argument
438 wrap_nearest_unorm_clamp_to_edge(float s, unsigned size, int offset, int *icoord) wrap_nearest_unorm_clamp_to_edge() argument
[all...]
H A Dsp_tex_sample.h42 int *icoord);
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_sample_soa.c698 LLVMValueRef icoord; in lp_build_sample_wrap_nearest() local
704 icoord = lp_build_ifloor(coord_bld, coord); in lp_build_sample_wrap_nearest()
706 icoord = lp_build_add(int_coord_bld, icoord, offset); in lp_build_sample_wrap_nearest()
708 icoord = LLVMBuildAnd(builder, icoord, length_minus_one, ""); in lp_build_sample_wrap_nearest()
719 icoord = lp_build_itrunc(coord_bld, coord); in lp_build_sample_wrap_nearest()
736 icoord = lp_build_itrunc(coord_bld, coord); in lp_build_sample_wrap_nearest()
739 icoord = lp_build_clamp(int_coord_bld, icoord, int_coord_bl in lp_build_sample_wrap_nearest()
[all...]

Completed in 7 milliseconds