Searched defs:blend (Results 1 - 25 of 46) sorted by relevance

12

/external/skia/src/animator/
H A DSkDisplayRandom.h34 SkScalar blend; member in class:SkDisplayRandom
H A DSkAnimateBase.h51 SkTDScalarArray blend; member in class:SkAnimateBase
H A DSkOperandIterpolator.cpp39 bool SkOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend) argument
42 blend = SkScalarPin(blend, 0, SK_Scalar1);
49 timeCode->fBlend[0] = SK_Scalar1 - blend;
52 timeCode->fBlend[3] = SK_Scalar1 - blend;
/external/webkit/Source/WebCore/platform/graphics/transforms/
H A DMatrix3DTransformOperation.cpp35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::Matrix3DTransformOperation
52 toT.blend(fromT, progress);
H A DMatrixTransformOperation.cpp31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::MatrixTransformOperation
48 toT.blend(fromT, progress);
H A DScaleTransformOperation.cpp27 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::ScaleTransformOperation
H A DSkewTransformOperation.cpp27 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::SkewTransformOperation
H A DTranslateTransformOperation.cpp28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::TranslateTransformOperation
34 return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(progress)),
35 Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)),
36 Length(m_z.type()).blend(m_z, narrowPrecisionToFloat(progress)), m_type);
42 return TranslateTransformOperation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPrecisionToFloat(progress)), m_z.blend(fromZ, narrowPrecisionToFloat(progress)), m_type);
H A DIdentityTransformOperation.h54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) function in class:WebCore::IdentityTransformOperation
H A DPerspectiveTransformOperation.cpp35 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::PerspectiveTransformOperation
54 toT.blend(fromT, progress);
H A DRotateTransformOperation.cpp32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::RotateTransformOperation
69 toT.blend(fromT, progress);
/external/qemu/android/skin/
H A Dimage.h35 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 );
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
H A DTextureBlenderAWT.java42 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { method in class:TextureBlenderAWT
81 * texture's color and later blended with the defined blend color. All alpha
H A DTextureBlenderDDS.java32 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { method in class:TextureBlenderDDS
H A DTextureBlenderLuminance.java33 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { method in class:TextureBlenderLuminance
118 * the blend type
218 throw new IllegalStateException("Unknown blend type: " + blendtype);
H A DTextureBlender.java50 Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext); method in interface:TextureBlender
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DPose.java68 * Applies the offsets of this pose to the vertex buffer given by the blend factor.
70 * @param blend Blend factor, 0 = no change to vertex buffer, 1 = apply full offsets
73 public void apply(float blend, FloatBuffer vertbuf){ argument
78 tempVec.set(offset).multLocal(blend);
/external/webkit/Source/WebCore/svg/
H A DSVGFEBlendElement.cpp73 FEBlend* blend = static_cast<FEBlend*>(effect); local
75 return blend->setBlendMode(static_cast<BlendModeType>(mode()));
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DMaterialLoader.java69 private boolean blend = false; field in class:MaterialLoader
251 blend = true;
327 if (blend){
419 blend = false;
/external/kernel-headers/original/linux/
H A Dtegrafb.h61 __u32 blend; member in struct:tegra_fb_windowattr
/external/skia/samplecode/
H A DTransitionView.cpp149 SkScalar blend[] = {0.8, 0.0, 0.0, 1.0}; local
150 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend);
151 fInterp.setKeyFrame(1, SkTime::GetMSecs()+500, fEnd, blend);
/external/skia/src/effects/
H A DSkArithmeticMode.cpp49 static int blend(int src, int dst, int scale) { function
111 a = blend(a, SkGetPackedA32(sc), scale);
112 r = blend(r, SkGetPackedR32(sc), scale);
113 g = blend(g, SkGetPackedG32(sc), scale);
114 b = blend(b, SkGetPackedB32(sc), scale);
/external/skia/tests/
H A DBlitRowTest.cpp147 bool blend = (k & 2) != 0; local
148 if (gSrcRec[j].fSrc != 0 && blend) {
154 paint.setAlpha(blend ? 0x80 : 0xFF);
158 SkDebugf("--- src index %d dither %d blend %d\n", j, dither, blend);
/external/webkit/Source/WebCore/platform/
H A DLength.h177 Length blend(const Length& from, float progress) const function in struct:WebCore::Length
/external/skia/src/utils/
H A DSkInterpolator.cpp41 <blend>
62 SkMSec nextTime, const SkScalar blend[4]) {
67 return blend ?
68 SkUnitCubicInterp(t, blend[0], blend[1], blend[2], blend[3]) : t;
166 const SkScalar values[], const SkScalar blend[4]) {
169 if (blend == NULL) {
170 blend
61 ComputeRelativeT(SkMSec time, SkMSec prevTime, SkMSec nextTime, const SkScalar blend[4]) argument
165 setKeyFrame(int index, SkMSec time, const SkScalar values[], const SkScalar blend[4]) argument
[all...]

Completed in 426 milliseconds

12