HomeSort by relevance Sort by last modified time
    Searched defs:blend (Results 1 - 25 of 32) sorted by null

1 2

  /external/webkit/WebCore/platform/graphics/transforms/
Matrix3DTransformOperation.cpp 35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::Matrix3DTransformOperation
52 toT.blend(fromT, progress);
MatrixTransformOperation.cpp 31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::MatrixTransformOperation
48 toT.blend(fromT, progress);
SkewTransformOperation.cpp 27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::SkewTransformOperation
ScaleTransformOperation.cpp 27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.cpp 27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::TranslateTransformOperation
33 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, progress),
34 Length(m_y.type()).blend(m_y, progress),
35 Length(m_z.type()).blend(m_z, progress), m_type);
41 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
IdentityTransformOperation.h 54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) function in class:WebCore::IdentityTransformOperation
PerspectiveTransformOperation.cpp 35 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::PerspectiveTransformOperation
51 toT.blend(fromT, progress);
RotateTransformOperation.cpp 32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::RotateTransformOperation
68 // Blend them
69 toT.blend(fromT, progress);
AffineTransform.cpp 327 void AffineTransform::blend(const AffineTransform& from, double progress) function in class:WebCore::AffineTransform
TransformationMatrix.cpp 1014 void TransformationMatrix::blend(const TransformationMatrix& from, double progress) function in class:WebCore::TransformationMatrix
    [all...]
  /external/skia/src/animator/
SkDisplayRandom.h 42 SkScalar blend; member in class:SkDisplayRandom
SkAnimateBase.h 59 SkTDScalarArray blend; member in class:SkAnimateBase
  /external/qemu/android/skin/
image.h 35 int blend; /* blending, 0..256 value */ member in struct:SkinImageDesc
87 int blend );
90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 26 SkScalar* blend = NULL; local
43 blend = blendStorage;
46 interp->setKeyFrame(index, msec, scalars, blend);
  /external/skia/tests/
BlitRowTest.cpp 140 bool blend = (k & 2) != 0; local
141 if (gSrcRec[j].fSrc != 0 && blend) {
147 paint.setAlpha(blend ? 0x80 : 0xFF);
151 SkDebugf("--- src index %d dither %d blend %d\n", j, dither, blend);
  /external/webkit/WebCore/platform/
Length.h 165 Length blend(const Length& from, double progress) const function in struct:WebCore::Length
167 // Blend two lengths to produce a new length that is in between them. Used for animation.
  /system/core/libpixelflinger/codeflinger/
texturing.cpp 117 // components as needed (or not at all if we don't blend)
1274 void GGLAssembler::blend( function in class:android::GGLAssembler
    [all...]
GGLAssembler.h 331 bool blend : 1; member in struct:android::GGLAssembler::component_info_t
362 void blend( component_t& dest,
  /external/freetype/include/freetype/internal/
t1types.h 224 PS_Blend blend; member in struct:T1_FaceRec_
psaux.h 643 PS_Blend blend,
685 PS_Blend blend; /* for multiple master support */ member in struct:T1_DecoderRec_
    [all...]
tttypes.h 1393 GX_Blend blend; member in struct:TT_FaceRec_
    [all...]
  /external/freetype/src/psaux/
t1decode.c 807 PS_Blend blend = decoder->blend; local
813 if ( !blend )
821 if ( arg_cnt != (FT_Int)( num_points * blend->num_designs ) )
850 for ( mm = 1; mm < blend->num_designs; mm++ )
851 tmp += FT_MulFix( *delta++, blend->weight_vector[mm] );
866 PS_Blend blend = decoder->blend; local
869 if ( arg_cnt != 1 || blend == NULL )
875 idx + blend->num_designs > decoder->len_buildchar
934 PS_Blend blend = decoder->blend; local
955 PS_Blend blend = decoder->blend; local
    [all...]
  /external/freetype/src/truetype/
ttgxvar.c 284 GX_Blend blend = face->blend; local
295 blend->avar_checked = TRUE;
306 axisCount != (FT_Long)blend->mmvar->num_axis )
309 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) )
312 segment = &blend->avar_segment[0];
322 FT_FREE( blend->avar_segment[j].correspondence );
324 FT_FREE( blend->avar_segment );
325 blend->avar_segment = NULL;
376 GX_Blend blend = face->blend local
860 GX_Blend blend; local
997 GX_Blend blend; local
1132 GX_Blend blend = face->blend; local
1327 GX_Blend blend = face->blend; local
    [all...]
  /external/webkit/WebCore/page/animation/
AnimationBase.cpp 110 return to.blend(from, progress);
156 RefPtr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp->blend(0, progress, true) : 0);
175 toT.blend(fromT, progress);
211 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const = 0;
256 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::PropertyWrapper
275 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::PropertyWrapperAcceleratedOpacity
293 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::PropertyWrapperAcceleratedTransform
330 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::PropertyWrapperShadow
383 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double pr (…) function in class:WebCore::PropertyWrapperMaybeInvalidColor
448 virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer* b, double progress) const function in class:WebCore::FillLayerPropertyWrapper
501 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::FillLayersPropertyWrapper
546 virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const RenderStyle* b, double progress) const function in class:WebCore::ShorthandPropertyWrapper
    [all...]
  /system/core/include/private/pixelflinger/
ggl_context.h 492 blend_state_t blend; member in struct:android::state_t

Completed in 1386 milliseconds

1 2