OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:LINTERP
(Results
1 - 2
of
2
) sorted by null
/external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe_clip.c
78
#define
LINTERP
(T, OUT, IN) ((OUT) + (T) * ((IN) - (OUT)))
88
dst[0] =
LINTERP
( t, out[0], in[0] );
89
dst[1] =
LINTERP
( t, out[1], in[1] );
90
dst[2] =
LINTERP
( t, out[2], in[2] );
91
dst[3] =
LINTERP
( t, out[3], in[3] );
/external/mesa3d/src/mesa/main/
macros.h
620
LINTERP
(GLfloat t, GLfloat out, GLfloat in)
628
dst[0] =
LINTERP
( t, out[0], in[0] );
629
dst[1] =
LINTERP
( t, out[1], in[1] );
630
dst[2] =
LINTERP
( t, out[2], in[2] );
636
dst[0] =
LINTERP
( t, out[0], in[0] );
637
dst[1] =
LINTERP
( t, out[1], in[1] );
638
dst[2] =
LINTERP
( t, out[2], in[2] );
639
dst[3] =
LINTERP
( t, out[3], in[3] );
Completed in 725 milliseconds