Home
last modified time | relevance | path

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

/external/deqp/framework/common/
DtcuTextureUtil.cpp667 static inline float linearInterpolate (float t, float minVal, float maxVal) in linearInterpolate() function
672 static inline Vec4 linearInterpolate (float t, const Vec4& a, const Vec4& b) in linearInterpolate() function
802 float r = linearInterpolate(s, minVal.x(), maxVal.x()); in fillWithComponentGradients1D()
803 float g = linearInterpolate(s, minVal.y(), maxVal.y()); in fillWithComponentGradients1D()
804 float b = linearInterpolate(s, minVal.z(), maxVal.z()); in fillWithComponentGradients1D()
805 float a = linearInterpolate(s, minVal.w(), maxVal.w()); in fillWithComponentGradients1D()
820 float r = linearInterpolate(( s + t) *0.5f, minVal.x(), maxVal.x()); in fillWithComponentGradients2D()
821 float g = linearInterpolate(( s + (1.0f-t))*0.5f, minVal.y(), maxVal.y()); in fillWithComponentGradients2D()
822 float b = linearInterpolate(((1.0f-s) + t) *0.5f, minVal.z(), maxVal.z()); in fillWithComponentGradients2D()
823 float a = linearInterpolate(((1.0f-s) + (1.0f-t))*0.5f, minVal.w(), maxVal.w()); in fillWithComponentGradients2D()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/ycbcr/
DvktYCbCrUtil.cpp1586 tcu::Interval linearInterpolate (const tcu::FloatFormat& filteringFormat, in linearInterpolate() function
1634 return linearInterpolate(filteringFormat, a, b, in linearSample()
1712 return linearInterpolate(filteringFormat, a, b, in reconstructLinearXYChromaSample()
2036 linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
2042 linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
2061 const Interval rValue (linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
2066 const Interval bValue (linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
2089 const Interval rValue (linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
2094 const Interval bValue (linearInterpolate(filteringFormat, lumaA, lumaB, in calculateBounds()
/external/deqp/framework/opengl/
DgluTextureTestUtil.cpp148 inline float linearInterpolate (float t, float minVal, float maxVal) in linearInterpolate() function
153 inline tcu::Vec4 linearInterpolate (float t, const tcu::Vec4& a, const tcu::Vec4& b) in linearInterpolate() function