Home
last modified time | relevance | path

Searched refs:FetchTexel (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_texfilter.c866 swImg->FetchTexel(swImg, i, 0, 0, rgba); in sample_1d_nearest()
903 swImg->FetchTexel(swImg, i0, 0, 0, t0); in sample_1d_linear()
909 swImg->FetchTexel(swImg, i1, 0, 0, t1); in sample_1d_linear()
1140 swImg->FetchTexel(swImg, i, j, 0, rgba); in sample_2d_nearest()
1185 swImg->FetchTexel(swImg, i0, j0, 0, t00); in sample_2d_linear()
1191 swImg->FetchTexel(swImg, i1, j0, 0, t10); in sample_2d_linear()
1197 swImg->FetchTexel(swImg, i0, j1, 0, t01); in sample_2d_linear()
1203 swImg->FetchTexel(swImg, i1, j1, 0, t11); in sample_2d_linear()
1238 swImg->FetchTexel(swImg, i0, j0, 0, t00); in sample_2d_linear_repeat()
1239 swImg->FetchTexel(swImg, i1, j0, 0, t10); in sample_2d_linear_repeat()
[all …]
Ds_texfetch.c496 texImage->FetchTexel = texfetch_funcs[format].Fetch1D; in set_fetch_functions()
499 texImage->FetchTexel = texfetch_funcs[format].Fetch2D; in set_fetch_functions()
502 texImage->FetchTexel = texfetch_funcs[format].Fetch3D; in set_fetch_functions()
510 assert(texImage->FetchTexel); in set_fetch_functions()
Ds_context.h162 FetchTexelFunc FetchTexel; member