Searched defs:lerp_2d (Results 1 - 3 of 3) sorted by relevance
/external/mesa3d/src/mesa/swrast/ |
H A D | s_blit.c | 359 lerp_2d(GLfloat a, GLfloat b, function 405 red = lerp_2d(colWeight, rowWeight, 408 green = lerp_2d(colWeight, rowWeight, 411 blue = lerp_2d(colWeight, rowWeight, 414 alpha = lerp_2d(colWeight, rowWeight, 462 red = lerp_2d(colWeight, rowWeight, 465 green = lerp_2d(colWeight, rowWeight, 468 blue = lerp_2d(colWeight, rowWeight, 471 alpha = lerp_2d(colWeight, rowWeight,
|
H A D | s_texfilter.c | 63 lerp_2d(GLfloat a, GLfloat b, function 74 * \sa lerp_2d 112 result[0] = lerp_2d(a, b, t00[0], t10[0], t01[0], t11[0]); 113 result[1] = lerp_2d(a, b, t00[1], t10[1], t01[1], t11[1]); 114 result[2] = lerp_2d(a, b, t00[2], t10[2], t01[2], t11[2]); 115 result[3] = lerp_2d(a, b, t00[3], t10[3], t01[3], t11[3]); 3500 return lerp_2d(wi, wj, depth00, depth10, depth01, depth11);
|
/external/mesa3d/src/gallium/drivers/softpipe/ |
H A D | sp_tex_sample.c | 85 lerp_2d(float a, float b, function 102 const float temp0 = lerp_2d(a, b, v000, v100, v010, v110); 103 const float temp1 = lerp_2d(a, b, v001, v101, v011, v111); 828 rgba[TGSI_NUM_CHANNELS*c] = lerp_2d(xw, yw, 1281 rgba[TGSI_NUM_CHANNELS*c] = lerp_2d(xw, yw, 1326 rgba[TGSI_NUM_CHANNELS*c] = lerp_2d(xw, yw, 1371 rgba[TGSI_NUM_CHANNELS*c] = lerp_2d(xw, yw,
|
Completed in 342 milliseconds