Home
last modified time | relevance | path

Searched refs:blend (Results 1 – 25 of 118) sorted by relevance

12345

/external/freetype/src/truetype/
Dttgxvar.c284 GX_Blend blend = face->blend; in ft_var_load_avar() local
295 blend->avar_checked = TRUE; in ft_var_load_avar()
306 axisCount != (FT_Long)blend->mmvar->num_axis ) in ft_var_load_avar()
309 if ( FT_NEW_ARRAY( blend->avar_segment, axisCount ) ) in ft_var_load_avar()
312 segment = &blend->avar_segment[0]; in ft_var_load_avar()
322 FT_FREE( blend->avar_segment[j].correspondence ); in ft_var_load_avar()
324 FT_FREE( blend->avar_segment ); in ft_var_load_avar()
325 blend->avar_segment = NULL; in ft_var_load_avar()
376 GX_Blend blend = face->blend; in ft_var_load_gvar() local
408 blend->tuplecount = gvar_head.globalCoordCount; in ft_var_load_gvar()
[all …]
/external/jmonkeyengine/engine/src/terrain/Common/MatDefs/Terrain/
DHeightBasedTerrain.frag22 vec3 blend = abs( normal );
23 blend = (blend -0.2) * 0.7;
24 blend = normalize(max(blend, 0.00001)); // Force weights to sum to 1.0 (very important!)
25 float b = (blend.x + blend.y + blend.z);
26 blend /= vec3(b, b, b);
70 return (blend.y * terrainColor + blend.x * slopeCol1 + blend.z * slopeCol2);
DTerrainLighting.frag345 // blend the results of the 3 planar projections.
361 // blend the results of the 3 planar projections.
365 // blend the results of the 3 planar projections.
369 // blend the results of the 3 planar projections.
373 // blend the results of the 3 planar projections.
377 // blend the results of the 3 planar projections.
381 // blend the results of the 3 planar projections.
385 // blend the results of the 3 planar projections.
389 // blend the results of the 3 planar projections.
393 // blend the results of the 3 planar projections.
[all …]
DTerrain.frag36 // blend the results of the 3 planar projections.
42 // blend the results of the 3 planar projections.
48 // blend the results of the 3 planar projections.
/external/webkit/Source/WebCore/platform/graphics/transforms/
DTranslateTransformOperation.cpp28 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, d… in blend() function in WebCore::TranslateTransformOperation
34 …return TranslateTransformOperation::create(Length(m_x.type()).blend(m_x, narrowPrecisionToFloat(pr… in blend()
35 … Length(m_y.type()).blend(m_y, narrowPrecisionToFloat(progress)), in blend()
36 … Length(m_z.type()).blend(m_z, narrowPrecisionToFloat(progress)), m_type); in blend()
42 …Operation::create(m_x.blend(fromX, narrowPrecisionToFloat(progress)), m_y.blend(fromY, narrowPreci… in blend()
DMatrix3DTransformOperation.cpp35 PassRefPtr<TransformOperation> Matrix3DTransformOperation::blend(const TransformOperation* from, do… in blend() function in WebCore::Matrix3DTransformOperation
52 toT.blend(fromT, progress); in blend()
DMatrixTransformOperation.cpp31 PassRefPtr<TransformOperation> MatrixTransformOperation::blend(const TransformOperation* from, doub… in blend() function in WebCore::MatrixTransformOperation
48 toT.blend(fromT, progress); in blend()
DPerspectiveTransformOperation.cpp35 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from,… in blend() function in WebCore::PerspectiveTransformOperation
54 toT.blend(fromT, progress); in blend()
DRotateTransformOperation.cpp32 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, doub… in blend() function in WebCore::RotateTransformOperation
69 toT.blend(fromT, progress); in blend()
/external/skia/src/animator/
DSkDisplayRandom.cpp21 SK_MEMBER(blend, Float),
32 SkDisplayRandom::SkDisplayRandom() : blend(0), min(0), max(SK_Scalar1) { in SkDisplayRandom()
41 SkDebugf("blend=\"%g\" ", SkScalarToFloat(blend)); in dump()
45 SkDebugf("blend=\"%x\" ", blend); in dump()
55 … SkScalar relativeT = SkUnitCubicInterp(random, SK_Scalar1 - blend, 0, 0, SK_Scalar1 - blend); in getProperty()
DSkAnimateField.cpp55 if (blend.count() != 1 || blend[0] != SK_Scalar1) { in dump()
58 for (int i = 0; i < blend.count(); i++) { in dump()
63 SkDebugf("%g", SkScalarToFloat(blend[i])); in dump()
65 SkDebugf("%x", blend[i]); in dump()
DSkOperandIterpolator.cpp39 …kOperandInterpolator::setKeyFrame(int index, SkMSec time, const SkOperand values[], SkScalar blend) in setKeyFrame() argument
42 blend = SkScalarPin(blend, 0, SK_Scalar1); in setKeyFrame()
49 timeCode->fBlend[0] = SK_Scalar1 - blend; in setKeyFrame()
52 timeCode->fBlend[3] = SK_Scalar1 - blend; in setKeyFrame()
/external/freetype/src/psaux/
Dt1decode.c808 PS_Blend blend = decoder->blend; in t1_decoder_parse_charstrings() local
814 if ( !blend ) in t1_decoder_parse_charstrings()
822 if ( arg_cnt != (FT_Int)( num_points * blend->num_designs ) ) in t1_decoder_parse_charstrings()
852 for ( mm = 1; mm < blend->num_designs; mm++ ) in t1_decoder_parse_charstrings()
853 tmp += FT_MulFix( *delta++, blend->weight_vector[mm] ); in t1_decoder_parse_charstrings()
868 PS_Blend blend = decoder->blend; in t1_decoder_parse_charstrings() local
871 if ( arg_cnt != 1 || blend == NULL ) in t1_decoder_parse_charstrings()
877 idx + blend->num_designs > decoder->len_buildchar ) in t1_decoder_parse_charstrings()
881 blend->weight_vector, in t1_decoder_parse_charstrings()
882 blend->num_designs * in t1_decoder_parse_charstrings()
[all …]
/external/skia/src/utils/
DSkInterpolator.cpp62 SkMSec nextTime, const SkScalar blend[4]) { in ComputeRelativeT()
67 return blend ? in ComputeRelativeT()
68 SkUnitCubicInterp(t, blend[0], blend[1], blend[2], blend[3]) : t; in ComputeRelativeT()
166 const SkScalar values[], const SkScalar blend[4]) { in setKeyFrame()
169 if (blend == NULL) { in setKeyFrame()
170 blend = gIdentityBlend; in setKeyFrame()
179 memcpy(timeCode->fBlend, blend, sizeof(timeCode->fBlend)); in setKeyFrame()
/external/llvm/test/CodeGen/X86/
D2011-10-19-widen_vselect.ll6 ; we are able to generate vector blend instructions.
9 ; CHECK: blend
19 ; CHECK: blend
31 ; CHECK: blend
42 ; CHECK: blend
Davx-win64.ll19 ; CHECK: blend
36 …%blend.i52 = call <8 x float> @llvm.x86.avx.blendv.ps.256(<8 x float> %x, <8 x float> %binop33, <8…
40 %0 = phi <8 x float> [ %x, %allocas ], [ %blend.i52, %safe_if_run_false ]
/external/qemu/android/skin/
Dimage.c183 h += desc->blend * 7; in skin_image_desc_hash()
194 a->blend == b->blend && in skin_image_desc_equal()
476 desc->blend == SKIN_BLEND_FULL) in skin_image_create()
489 desc0.blend = SKIN_BLEND_FULL; in skin_image_create()
518 if (desc->blend != SKIN_BLEND_FULL) in skin_image_create()
519 blend_image( node->pixels, node->pixels, node->w, node->h, desc->blend ); in skin_image_create()
580 desc.blend = SKIN_BLEND_FULL; in skin_image_find_simple()
665 int blend ) in skin_image_clone_full() argument
674 blend == SKIN_BLEND_FULL) in skin_image_clone_full()
681 desc.blend = blend; in skin_image_clone_full()
[all …]
Dimage.h35 int blend; /* blending, 0..256 value */ member
87 int blend );
90 extern void skin_image_blend_clone( SkinImage* clone, SkinImage* source, int blend );
/external/skia/src/effects/
DSkArithmeticMode.cpp49 static int blend(int src, int dst, int scale) { in blend() function
111 a = blend(a, SkGetPackedA32(sc), scale); in xfer32()
112 r = blend(r, SkGetPackedR32(sc), scale); in xfer32()
113 g = blend(g, SkGetPackedG32(sc), scale); in xfer32()
114 b = blend(b, SkGetPackedB32(sc), scale); in xfer32()
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
DSpatialTrack.java104 float blend = (time - times[startFrame]) / (times[endFrame] - times[startFrame]); in setTime() local
120 tempQ.nlerp(tempQ2, blend); in setTime()
121 tempV.interpolate(tempV2, blend); in setTime()
122 tempS.interpolate(tempS2, blend); in setTime()
DBoneTrack.java228 float blend = (time - times[startFrame]) in setTime() local
241 tempQ.nlerp(tempQ2, blend); in setTime()
242 tempV.interpolate(tempV2, blend); in setTime()
243 tempS.interpolate(tempS2, blend); in setTime()
/external/webkit/Source/WebCore/page/animation/
DAnimationBase.cpp116 return to.blend(from, narrowPrecisionToFloat(progress)); in blendFunc()
169 …Ptr<TransformOperation> blendedOp = toOp ? toOp->blend(fromOp.get(), progress) : (fromOp ? fromOp-… in blendFunc()
188 toT.blend(fromT, progress); in blendFunc()
241 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render…
286 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapper
305 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperAcceleratedOpacity
323 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperAcceleratedTransform
361 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperShadow
420 …virtual void blend(const AnimationBase* anim, RenderStyle* dst, const RenderStyle* a, const Render… in blend() function in WebCore::PropertyWrapperMaybeInvalidColor
450 …virtual void blend(const AnimationBase* anim, FillLayer* dst, const FillLayer* a, const FillLayer*…
[all …]
/external/skia/samplecode/
DTransitionView.cpp149 SkScalar blend[] = {0.8, 0.0, 0.0, 1.0}; in onSizeChange() local
150 fInterp.setKeyFrame(0, SkTime::GetMSecs(), fBegin, blend); in onSizeChange()
151 fInterp.setKeyFrame(1, SkTime::GetMSecs()+500, fEnd, blend); in onSizeChange()
/external/skia/include/utils/
DSkInterpolator.h71 SkMSec nextTime, const SkScalar blend[4] = NULL);
105 const SkScalar blend[4] = NULL);
/external/skia/tests/
DBlitRowTest.cpp147 bool blend = (k & 2) != 0; in test_00_FF() local
148 if (gSrcRec[j].fSrc != 0 && blend) { in test_00_FF()
154 paint.setAlpha(blend ? 0x80 : 0xFF); in test_00_FF()
158 SkDebugf("--- src index %d dither %d blend %d\n", j, dither, blend); in test_00_FF()

12345