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

1 2 3 4 5 6

  /external/skia/src/animator/
SkDisplayRandom.cpp 29 SK_MEMBER(blend, Float),
40 SkDisplayRandom::SkDisplayRandom() : blend(0), min(0), max(SK_Scalar1) {
49 SkDebugf("blend=\"%g\" ", SkScalarToFloat(blend));
53 SkDebugf("blend=\"%x\" ", blend);
63 SkScalar relativeT = SkUnitCubicInterp(random, SK_Scalar1 - blend, 0, 0, SK_Scalar1 - blend);
SkOperandInterpolator.h 38 @param blend A positive scalar specifying how to blend between this and the next key frame.
39 [0...1) is a cubic lag/log/lag blend (slow to change at the beginning and end)
40 1 is a linear blend (default)
41 (1...inf) is a cubic log/lag/log blend (fast to change at the beginning and end)
43 bool setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend = SK_Scalar1);
SkAnimateField.cpp 63 if (blend.count() != 1 || blend[0] != SK_Scalar1) {
64 SkDebugf("blend=\"[");
66 for (int i = 0; i < blend.count(); i++) {
71 SkDebugf("%g", SkScalarToFloat(blend[i]));
73 SkDebugf("%x", blend[i]);
SkOperandIterpolator.cpp 47 bool SkOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend)
50 blend = SkScalarPin(blend, 0, SK_Scalar1);
57 timeCode->fBlend[0] = SK_Scalar1 - blend;
60 timeCode->fBlend[3] = SK_Scalar1 - blend;
SkDisplayRandom.h 42 SkScalar blend; member in class:SkDisplayRandom
  /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/platform/graphics/transforms/
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);
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);
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);
SkewTransformOperation.cpp 27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::SkewTransformOperation
IdentityTransformOperation.h 54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) function in class:WebCore::IdentityTransformOperation
PerspectiveTransformOperation.h 59 virtual PassRefPtr<TransformOperation> blend(const TransformOperation* from, double progress, bool blendToIdentity = false);
  /frameworks/base/graphics/java/android/graphics/
Interpolator.java 65 * values (with an implicity blend array of [0, 0, 1, 1] giving linear
79 * values and blend array.
85 * @param blend (may be null) Optional array of 4 blend values
87 public void setKeyFrame(int index, int msec, float[] values, float[] blend) {
94 if (blend != null && blend.length < 4) {
97 nativeSetKeyFrame(native_instance, index, msec, values, blend);
159 private static native void nativeSetKeyFrame(int native_instance, int index, int msec, float[] values, float[] blend);
  /external/skia/src/utils/
SkInterpolator.cpp 48 <blend>
69 SkMSec nextTime, const SkScalar blend[4]) {
74 return blend ?
75 SkUnitCubicInterp(t, blend[0], blend[1], blend[2], blend[3]) : t;
173 const SkScalar values[], const SkScalar blend[4]) {
176 if (blend == NULL) {
177 blend = gIdentityBlend
    [all...]
  /external/skia/src/core/
SkBlitRow.h 45 @param count number of colors to blend
54 /** Blend a single color onto a row of S32 pixels, writing the result
61 /** Blend a single color onto a row of 32bit pixels, writing the result
  /frameworks/base/core/jni/android/graphics/
Interpolator.cpp 26 SkScalar* blend = NULL; local
43 blend = blendStorage;
46 interp->setKeyFrame(index, msec, scalars, blend);
  /external/freetype/src/psaux/
t1decode.h 50 PS_Blend blend,
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/skia/include/utils/
SkInterpolator.h 78 SkMSec nextTime, const SkScalar blend[4] = NULL);
106 @param blend A positive scalar specifying how to blend between this
108 blend (slow to change at the beginning and end)
109 1 is a linear blend (default)
112 const SkScalar blend[4] = NULL);
  /external/qemu/android/skin/
image.c 183 h += desc->blend * 7;
194 a->blend == b->blend &&
476 desc->blend == SKIN_BLEND_FULL)
489 desc0.blend = SKIN_BLEND_FULL;
518 if (desc->blend != SKIN_BLEND_FULL)
519 blend_image( node->pixels, node->pixels, node->w, node->h, desc->blend );
580 desc.blend = SKIN_BLEND_FULL;
665 int blend )
674 blend == SKIN_BLEND_FULL
    [all...]
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 );
  /system/core/libpixelflinger/
picker.cpp 53 uint32_t src = c->state.blend.src;
54 uint32_t dst = c->state.blend.dst;
55 uint32_t src_alpha = c->state.blend.src_alpha;
56 uint32_t dst_alpha = c->state.blend.dst_alpha;
84 if (c->state.blend.alpha_separate) {
  /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);

Completed in 362 milliseconds

1 2 3 4 5 6