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.h110 unsigned ypot; member
Dsp_tex_sample.c1014 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_linear_repeat_POT() local
1016 const int ymax = (ypot - 1) & (TEX_TILE_SIZE - 1); /* MIN2(TEX_TILE_SIZE, ypot) - 1; */ in img_filter_2d_linear_repeat_POT()
1021 const float v = (args->t * ypot - 0.5F) + args->offset[1]; in img_filter_2d_linear_repeat_POT()
1030 const int y0 = vflr & (ypot - 1); in img_filter_2d_linear_repeat_POT()
1045 const unsigned y1 = (y0 + 1) & (ypot - 1); in img_filter_2d_linear_repeat_POT()
1069 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_nearest_repeat_POT() local
1075 const float v = args->t * ypot + args->offset[1]; in img_filter_2d_nearest_repeat_POT()
1081 const int y0 = vflr & (ypot - 1); in img_filter_2d_nearest_repeat_POT()
1104 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_nearest_clamp_POT() local
1109 const float v = args->t * ypot + args->offset[1]; in img_filter_2d_nearest_clamp_POT()
[all …]