Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/softpipe/
Dsp_tex_sample.c790 unsigned ypot = pot_level_size(samp->ypot, level); in img_filter_2d_linear_repeat_POT() local
792 unsigned ymax = (ypot - 1) & (TILE_SIZE - 1); /* MIN2(TILE_SIZE, ypot) - 1; */ in img_filter_2d_linear_repeat_POT()
799 float v = t * ypot - 0.5F; in img_filter_2d_linear_repeat_POT()
808 int y0 = vflr & (ypot - 1); in img_filter_2d_linear_repeat_POT()
822 unsigned y1 = (y0 + 1) & (ypot - 1); in img_filter_2d_linear_repeat_POT()
851 unsigned ypot = pot_level_size(samp->ypot, level); in img_filter_2d_nearest_repeat_POT() local
857 float v = t * ypot; in img_filter_2d_nearest_repeat_POT()
863 int y0 = vflr & (ypot - 1); in img_filter_2d_nearest_repeat_POT()
890 unsigned ypot = pot_level_size(samp->ypot, level); in img_filter_2d_nearest_clamp_POT() local
895 float v = t * ypot; in img_filter_2d_nearest_clamp_POT()
[all …]
Dsp_tex_sample.h109 unsigned ypot; member