Searched refs:interpolation (Results 1 - 25 of 79) sorted by relevance

1234

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DInterpolationEffect.h8 #include "core/animation/interpolation/Interpolation.h"
21 void addInterpolation(PassRefPtrWillBeRawPtr<Interpolation> interpolation, PassRefPtr<TimingFunction> easing, double start, double end, double applyFrom, double applyTo) argument
23 m_interpolations.append(InterpolationRecord::create(interpolation, easing, start, end, applyFrom, applyTo));
42 static PassOwnPtrWillBeRawPtr<InterpolationRecord> create(PassRefPtrWillBeRawPtr<Interpolation> interpolation, PassRefPtr<TimingFunction> easing, double start, double end, double applyFrom, double applyTo) argument
44 return adoptPtrWillBeNoop(new InterpolationRecord(interpolation, easing, start, end, applyFrom, applyTo));
50 InterpolationRecord(PassRefPtrWillBeRawPtr<Interpolation> interpolation, PassRefPtr<TimingFunction> easing, double start, double end, double applyFrom, double applyTo) argument
51 : m_interpolation(interpolation)
H A DInterpolationEffect.cpp18 RefPtrWillBeRawPtr<Interpolation> interpolation = record->m_interpolation; local
22 interpolation->interpolate(0, localFraction);
23 result->append(interpolation);
H A DAnimationStack.cpp35 #include "core/animation/interpolation/StyleInterpolation.h"
47 Interpolation* interpolation = source[i].get(); local
48 target.set(toStyleInterpolation(interpolation)->id(), interpolation);
H A DInterpolableValueTest.cpp8 #include "core/animation/interpolation/Interpolation.h"
16 InterpolableValue* interpolationValue(Interpolation& interpolation) argument
18 return interpolation.getCachedValueForTesting();
H A DInterpolationEffectTest.cpp20 InterpolableValue* interpolationValue(Interpolation& interpolation) argument
22 return interpolation.getCachedValueForTesting();
H A DAnimationStackTest.cpp13 #include "core/animation/interpolation/LegacyStyleInterpolation.h"
74 AnimatableValue* interpolationValue(Interpolation* interpolation) argument
76 return toLegacyStyleInterpolation(interpolation)->currentValue().get();
/external/chromium_org/third_party/skia/src/svg/
H A DSkSVGFeColorMatrix.cpp14 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
/external/skia/src/svg/
H A DSkSVGFeColorMatrix.cpp14 SVG_LITERAL_ATTRIBUTE(color-interpolation-filters, f_color_interpolation_filters),
/external/deqp/framework/opengl/
H A DgluVarType.cpp176 const char* getInterpolationName (Interpolation interpolation) argument
180 return de::getSizedArrayElement<INTERPOLATION_LAST>(s_names, interpolation);
260 , interpolation (interpolation_)
271 interpolation == other.interpolation &&
335 if (decl.interpolation != INTERPOLATION_LAST)
336 str << getInterpolationName(decl.interpolation) << " ";
H A DgluVarType.hpp190 const char* getInterpolationName (Interpolation interpolation);
262 Interpolation interpolation; member in struct:glu::VariableDeclaration
/external/chromium_org/third_party/angle/src/common/
H A Dshadervars.h23 // Varying interpolation qualifier, see section 4.3.9 of the ESSL 3.00.4 spec
105 InterpolationType interpolation; member in struct:gl::Varying
111 interpolation(interpolationIn)
/external/chromium_org/third_party/libvpx/source/libvpx/vpx_scale/generic/
H A Dvpx_scale.c158 * FUNCTION : Performs linear interpolation in one dimension.
228 * FUNCTION : Performs 2-tap linear interpolation in two dimensions.
270 int interpolation = 0; local
329 interpolation = 1;
357 if (interpolation) {
381 if (interpolation)
472 * FUNCTION : Performs 2-tap linear interpolation in two dimensions.
/external/libvpx/libvpx/vpx_scale/generic/
H A Dvpx_scale.c158 * FUNCTION : Performs linear interpolation in one dimension.
228 * FUNCTION : Performs 2-tap linear interpolation in two dimensions.
270 int interpolation = 0; local
329 interpolation = 1;
357 if (interpolation) {
381 if (interpolation)
472 * FUNCTION : Performs 2-tap linear interpolation in two dimensions.
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/arm/armv6/
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm43 ; bilinear interpolation
73 ; bilinear interpolation
104 ; bilinear interpolation
135 ; bilinear interpolation
H A Dvp8_variance_halfpixvar16x16_v_armv6.asm44 ; bilinear interpolation
74 ; bilinear interpolation
105 ; bilinear interpolation
136 ; bilinear interpolation
/external/libvpx/libvpx/vp8/common/arm/armv6/
H A Dvp8_variance_halfpixvar16x16_h_armv6.asm43 ; bilinear interpolation
73 ; bilinear interpolation
104 ; bilinear interpolation
135 ; bilinear interpolation
H A Dvp8_variance_halfpixvar16x16_v_armv6.asm44 ; bilinear interpolation
74 ; bilinear interpolation
105 ; bilinear interpolation
136 ; bilinear interpolation
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_dump.cpp151 out << ' ' << sm4_interpolation_names[dcl.dcl_input_ps.interpolation];
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dir_set_program_inouts.cpp93 (glsl_interp_qualifier) var->interpolation;
H A Dir.cpp1487 mode(mode), interpolation(INTERP_QUALIFIER_NONE)
1512 switch (this->interpolation) {
1527 if (this->interpolation != INTERP_QUALIFIER_NONE)
1528 return (glsl_interp_qualifier) this->interpolation;
1576 a->interpolation != b->interpolation ||
/external/mesa3d/src/gallium/state_trackers/d3d1x/d3d1xshader/src/
H A Dsm4_dump.cpp151 out << ' ' << sm4_interpolation_names[dcl.dcl_input_ps.interpolation];
/external/mesa3d/src/glsl/
H A Dir_set_program_inouts.cpp93 (glsl_interp_qualifier) var->interpolation;
H A Dir.cpp1487 mode(mode), interpolation(INTERP_QUALIFIER_NONE)
1512 switch (this->interpolation) {
1527 if (this->interpolation != INTERP_QUALIFIER_NONE)
1528 return (glsl_interp_qualifier) this->interpolation;
1576 a->interpolation != b->interpolation ||
/external/deqp/modules/gles3/functional/
H A Des3fTransformFeedbackTests.cpp101 , interpolation (interp_)
107 Interpolation interpolation; //!< Interpolation mode (smooth, flat, centroid). member in struct:deqp::gles3::Functional::TransformFeedback::Varying
371 str << getInterpolationName(var->interpolation) << " " << inout << " " << glu::declare(var->type, var->name.c_str()) << ";\n";
1324 BasicTypeCase (Context& context, const char* name, const char* desc, deUint32 bufferType, deUint32 primitiveType, glu::DataType type, glu::Precision precision, Interpolation interpolation)
1327 m_progSpec.addVarying("v_varA", glu::VarType(type, precision), interpolation);
1328 m_progSpec.addVarying("v_varB", glu::VarType(type, precision), interpolation);
1338 BasicArrayCase (Context& context, const char* name, const char* desc, deUint32 bufferType, deUint32 primitiveType, glu::DataType type, glu::Precision precision, Interpolation interpolation)
1346 m_progSpec.addVarying("v_varA", glu::VarType(glu::VarType(type, precision), 1), interpolation);
1347 m_progSpec.addVarying("v_varB", glu::VarType(glu::VarType(type, precision), 2), interpolation);
1351 m_progSpec.addVarying("v_varA", glu::VarType(glu::VarType(type, precision), 3), interpolation);
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dcss.js261 if (context == "interpolation") style = "operator";
270 else if (type == "interpolation") state.stack.push("interpolation");
421 "color-interpolation", "color-interpolation-filters", "color-profile",
630 return ["operator", "interpolation"];

Completed in 1142 milliseconds

1234