OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:linearInterpolate
(Results
1 - 2
of
2
) sorted by null
/external/deqp/framework/common/
tcuTextureUtil.cpp
427
static inline float
linearInterpolate
(float t, float minVal, float maxVal)
432
static inline Vec4
linearInterpolate
(float t, const Vec4& a, const Vec4& b)
591
float r =
linearInterpolate
(s, minVal.x(), maxVal.x());
592
float g =
linearInterpolate
(s, minVal.y(), maxVal.y());
593
float b =
linearInterpolate
(s, minVal.z(), maxVal.z());
594
float a =
linearInterpolate
(s, minVal.w(), maxVal.w());
609
float r =
linearInterpolate
(( s + t) *0.5f, minVal.x(), maxVal.x());
610
float g =
linearInterpolate
(( s + (1.0f-t))*0.5f, minVal.y(), maxVal.y());
611
float b =
linearInterpolate
(((1.0f-s) + t) *0.5f, minVal.z(), maxVal.z());
612
float a =
linearInterpolate
(((1.0f-s) + (1.0f-t))*0.5f, minVal.w(), maxVal.w())
[
all
...]
/external/deqp/modules/glshared/
glsTextureTestUtil.cpp
155
inline float
linearInterpolate
(float t, float minVal, float maxVal)
160
inline tcu::Vec4
linearInterpolate
(float t, const tcu::Vec4& a, const tcu::Vec4& b)
[
all
...]
Completed in 78 milliseconds