HomeSort by relevance Sort by last modified time
    Searched defs:Interpolation (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
Interpolation.cpp 6 #include "core/animation/Interpolation.h"
10 DEFINE_EMPTY_DESTRUCTOR_WILL_BE_REMOVED(Interpolation);
37 Interpolation::Interpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end)
47 void Interpolation::interpolate(int iteration, double fraction) const
56 void Interpolation::trace(Visitor* visitor)
Interpolation.h 13 class Interpolation : public RefCountedWillBeGarbageCollected<Interpolation> {
14 DECLARE_EMPTY_VIRTUAL_DESTRUCTOR_WILL_BE_REMOVED(Interpolation);
16 static PassRefPtrWillBeRawPtr<Interpolation> create(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end)
18 return adoptRefWillBeNoop(new Interpolation(start, end));
36 Interpolation(PassOwnPtrWillBeRawPtr<InterpolableValue> start, PassOwnPtrWillBeRawPtr<InterpolableValue> end);
  /external/deqp/framework/opengl/
gluVarType.hpp 182 enum Interpolation
190 const char* getInterpolationName (Interpolation interpolation);
256 VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE_LAST, Interpolation interpolation_ = INTERPOLATION_LAST, const Layout& layout_ = Layout(), deUint32 memoryAccessQualifierBits_ = 0);
262 Interpolation interpolation; member in struct:glu::VariableDeclaration
  /external/deqp/modules/gles3/functional/
es3fTransformFeedbackTests.cpp 74 enum Interpolation
83 static const char* getInterpolationName (Interpolation interp)
98 Varying (const char* name_, const glu::VarType& type_, Interpolation interp_)
101 , interpolation (interp_)
107 Interpolation interpolation; //!< Interpolation mode (smooth, flat, centroid). member in struct:deqp::gles3::Functional::TransformFeedback::Varying
185 void addVarying (const char* name, const glu::VarType& type, Interpolation interp);
221 void ProgramSpec::addVarying (const char* name, const glu::VarType& type, Interpolation interp)
371 str << getInterpolationName(var->interpolation) << " " << inout << " " << glu::declare(var->type, var->name.c_str()) << ";\n"
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsintrp.c 29 // This module incorporates several interpolation routines, for 1 to 8 channels on input and
30 // up to 65535 channels on output. The user may change those by using the interpolation plug-in
32 // Interpolation routines by default
38 // The interpolation plug-in memory chunk allocator/dup
77 // Set the interpolation method
82 p ->Interpolation.Lerp16 = NULL;
86 p ->Interpolation = ptr->Interpolators(p -> nInputs, p ->nOutputs, p ->dwFlags);
90 if (p ->Interpolation.Lerp16 == NULL)
91 p ->Interpolation = DefaultInterpolatorsFactory(p ->nInputs, p ->nOutputs, p ->dwFlags);
94 if (p ->Interpolation.Lerp16 == NULL)
    [all...]
  /external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/include/
lcms2_plugin.h 250 // Interpolation. 16 bits and floating point versions.
253 // Interpolation callbacks
255 // 16 bits forward interpolation. This function performs precision-limited linear interpolation
257 // choose to implement any other interpolation algorithm.
262 // Floating point forward interpolation. Full precision interpolation using floats. This is not a
264 // choose to implement any other interpolation algorithm.
273 _cmsInterpFn16 Lerp16; // Forward interpolation in 16 bits
274 _cmsInterpFnFloat LerpFloat; // Forward interpolation in floating poin
    [all...]

Completed in 239 milliseconds