HomeSort by relevance Sort by last modified time
    Searched defs:Interpolation (Results 1 - 4 of 4) 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...]

Completed in 206 milliseconds