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.c997 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_linear_repeat_POT() local
999 const int ymax = (ypot - 1) & (TEX_TILE_SIZE - 1); /* MIN2(TEX_TILE_SIZE, ypot) - 1; */ in img_filter_2d_linear_repeat_POT()
1004 const float v = (args->t * ypot - 0.5F) + args->offset[1]; in img_filter_2d_linear_repeat_POT()
1013 const int y0 = vflr & (ypot - 1); in img_filter_2d_linear_repeat_POT()
1028 const unsigned y1 = (y0 + 1) & (ypot - 1); in img_filter_2d_linear_repeat_POT()
1052 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_nearest_repeat_POT() local
1058 const float v = args->t * ypot + args->offset[1]; in img_filter_2d_nearest_repeat_POT()
1064 const int y0 = vflr & (ypot - 1); in img_filter_2d_nearest_repeat_POT()
1087 const unsigned ypot = pot_level_size(sp_sview->ypot, args->level); in img_filter_2d_nearest_clamp_POT() local
1092 const float v = args->t * ypot + args->offset[1]; in img_filter_2d_nearest_clamp_POT()
[all …]
Dsp_tex_sample.h110 unsigned ypot; member