OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:interpolationfactor
(Results
1 - 3
of
3
) sorted by null
/external/deqp/modules/glshared/
glsCalibration.cpp
111
const float
interpolationFactor
= floatNdx - (float)lowerNdx;
115
DE_ASSERT(
interpolationFactor
>= 0 &&
interpolationFactor
< 1.0f);
117
return tcu::mix((float)values[lowerNdx], (float)values[higherNdx],
interpolationFactor
);
/cts/tests/camera/src/android/hardware/camera2/cts/rs/
RawConverter.java
305
double
interpolationFactor
= findDngInterpolationFactor(referenceIlluminant1,
308
if (DEBUG) Log.d(TAG, "Interpolation factor used: " +
interpolationFactor
);
312
interpolationFactor
, /*out*/sensorToXYZ);
585
* @param
interpolationFactor
the interpolation factor to use for the forward and
591
Rational[/*3*/] neutralColorPoint, double
interpolationFactor
,
598
lerp(calibrationTransform1, calibrationTransform2,
interpolationFactor
,
621
lerp(forwardTransform1, forwardTransform2,
interpolationFactor
, /*out*/intermediate);
[
all
...]
/external/deqp/modules/gles3/performance/
es3pBufferDataUploadTests.cpp
658
const float
interpolationFactor
= floatNdx - (float)lowerNdx;
662
DE_ASSERT(
interpolationFactor
>= 0 &&
interpolationFactor
< 1.0f);
664
return tcu::mix((float)values[lowerNdx], (float)values[higherNdx],
interpolationFactor
);
[
all
...]
Completed in 93 milliseconds