HomeSort by relevance Sort by last modified time
    Searched refs:LERP (Results 1 - 5 of 5) sorted by null

  /external/pdfium/third_party/lcms/src/
cmsintrp.c 334 # define LERP(a,l,h) (cmsFloat32Number) ((l)+(((h)-(l))*(a)))
367 dx0 = LERP(fx, d00, d10);
368 dx1 = LERP(fx, d01, d11);
370 dxy = LERP(fy, dx0, dx1);
376 # undef LERP
388 #define LERP(a,l,h) (cmsUInt16Number) (l + ROUND_FIXED_TO_INT(((h-l)*a)))
425 dx0 = LERP(rx, d00, d10);
426 dx1 = LERP(rx, d01, d11);
428 dxy = LERP(ry, dx0, dx1);
434 # undef LERP
    [all...]
  /external/mesa3d/src/mesa/main/
texcompress_fxt1.c 593 FX64_MOV32(hi, 6); /* alpha = "011" + lerp = 0 */
764 FX64_MOV32(hi, 7); /* alpha = "011" + lerp = 1 */
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_blit.c 382 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) )
388 const GLfloat temp0 = LERP(a, v00, v10);
389 const GLfloat temp1 = LERP(a, v01, v11);
390 return LERP(b, temp0, temp1);
s_texfilter.c 53 #define LERP(T, A, B) ( (A) + (T) * ((B) - (A)) )
68 const GLfloat temp0 = LERP(a, v00, v10);
69 const GLfloat temp1 = LERP(a, v01, v11);
70 return LERP(b, temp0, temp1);
83 const GLfloat temp00 = LERP(a, v000, v100);
84 const GLfloat temp10 = LERP(a, v010, v110);
85 const GLfloat temp01 = LERP(a, v001, v101);
86 const GLfloat temp11 = LERP(a, v011, v111);
87 const GLfloat temp0 = LERP(b, temp00, temp10);
88 const GLfloat temp1 = LERP(b, temp01, temp11)
    [all...]
  /external/mesa3d/src/gallium/state_trackers/nine/
nine_dump.c 222 D3DTOP_TO_STR_CASE(LERP);

Completed in 1044 milliseconds