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

123456789

/external/chromium_org/third_party/WebKit/Source/core/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.cpp29 PassRefPtr<TransformOperation> ScaleTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::ScaleTransformOperation
35 return ScaleTransformOperation::create(WebCore::blend(m_x, 1.0, progress),
36 WebCore::blend(m_y, 1.0, progress),
37 WebCore::blend(m_z, 1.0, progress), m_type);
43 return ScaleTransformOperation::create(WebCore::blend(fromX, m_x, progress),
44 WebCore::blend(fromY, m_y, progress),
45 WebCore::blend(fromZ, m_z, progress), m_type);
H A DSkewTransformOperation.cpp29 PassRefPtr<TransformOperation> SkewTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::SkewTransformOperation
35 return SkewTransformOperation::create(WebCore::blend(m_angleX, 0.0, progress), WebCore::blend(m_angleY, 0.0, progress), m_type);
40 return SkewTransformOperation::create(WebCore::blend(fromAngleX, m_angleX, progress), WebCore::blend(fromAngleY, m_angleY, progress), m_type);
H A DTranslateTransformOperation.cpp27 PassRefPtr<TransformOperation> TranslateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::TranslateTransformOperation
34 return TranslateTransformOperation::create(zeroLength.blend(m_x, progress), zeroLength.blend(m_y, progress), zeroLength.blend(m_z, progress), m_type);
40 return TranslateTransformOperation::create(m_x.blend(fromX, progress), m_y.blend(fromY, progress), m_z.blend(fromZ, progress), m_type);
H A DIdentityTransformOperation.h54 virtual PassRefPtr<TransformOperation> blend(const TransformOperation*, double, bool = false) function in class:WebCore::IdentityTransformOperation
H A DInterpolatedTransformOperation.cpp53 toTransform.blend(fromTransform, progress);
58 PassRefPtr<TransformOperation> InterpolatedTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::InterpolatedTransformOperation
H A DPerspectiveTransformOperation.cpp36 PassRefPtr<TransformOperation> PerspectiveTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::PerspectiveTransformOperation
43 p = WebCore::blend(p, 1.0, progress); // FIXME: this seems wrong. https://bugs.webkit.org/show_bug.cgi?id=52700
55 toT.blend(fromT, progress);
H A DRotateTransformOperation.cpp33 PassRefPtr<TransformOperation> RotateTransformOperation::blend(const TransformOperation* from, double progress, bool blendToIdentity) function in class:WebCore::RotateTransformOperation
51 WebCore::blend(fromAngle, m_angle, progress), m_type);
70 toT.blend(fromT, progress);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Du_dual_blend.h14 static INLINE boolean util_blend_state_is_dual(const struct pipe_blend_state *blend, argument
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
/external/chromium_org/third_party/skia/src/animator/
H A DSkDisplayRandom.h34 SkScalar blend; member in class:SkDisplayRandom
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_dual_blend.h14 static INLINE boolean util_blend_state_is_dual(const struct pipe_blend_state *blend, argument
17 if (util_blend_factor_is_dual_src(blend->rt[index].rgb_src_factor) ||
18 util_blend_factor_is_dual_src(blend->rt[index].alpha_src_factor) ||
19 util_blend_factor_is_dual_src(blend->rt[index].rgb_dst_factor) ||
20 util_blend_factor_is_dual_src(blend->rt[index].alpha_dst_factor))
/external/skia/src/animator/
H A DSkDisplayRandom.h34 SkScalar blend; member in class:SkDisplayRandom
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/
H A DAnimationUtilities.h35 inline int blend(int from, int to, double progress) function in namespace:WebCore
40 inline unsigned blend(unsigned from, unsigned to, double progress) function in namespace:WebCore
45 inline double blend(double from, double to, double progress) function in namespace:WebCore
50 inline float blend(float from, float to, double progress) function in namespace:WebCore
55 inline LayoutUnit blend(LayoutUnit from, LayoutUnit to, double progress) function in namespace:WebCore
60 inline IntPoint blend(const IntPoint& from, const IntPoint& to, double progress) function in namespace:WebCore
62 return IntPoint(blend(from.x(), to.x(), progress), blend(from.y(), to.y(), progress));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
H A Dvl_matrix_filter.h42 void *blend; member in struct:vl_matrix_filter
H A Dvl_median_filter.h50 void *blend; member in struct:vl_median_filter
/external/mesa3d/src/gallium/auxiliary/vl/
H A Dvl_matrix_filter.h42 void *blend; member in struct:vl_matrix_filter
/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/chromium_org/gpu/command_buffer/client/
H A Dclient_context_state_autogen.h15 bool blend; member in struct:EnableFlags
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/
H A DFilterOperation.cpp34 PassRefPtr<FilterOperation> BasicColorMatrixFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::BasicColorMatrixFilterOperation
40 return BasicColorMatrixFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
44 return BasicColorMatrixFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
62 PassRefPtr<FilterOperation> BasicComponentTransferFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::BasicComponentTransferFilterOperation
68 return BasicComponentTransferFilterOperation::create(WebCore::blend(m_amount, passthroughAmount(), progress), m_type);
72 return BasicComponentTransferFilterOperation::create(WebCore::blend(fromAmount, m_amount, progress), m_type);
92 PassRefPtr<FilterOperation> GammaFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::GammaFilterOperation
99 WebCore::blend(m_amplitude, 1.0, progress),
100 WebCore::blend(m_exponent, 1.0, progress),
101 WebCore::blend(m_offse
113 PassRefPtr<FilterOperation> BlurFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::BlurFilterOperation
128 PassRefPtr<FilterOperation> DropShadowFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::DropShadowFilterOperation
[all...]
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/filters/custom/
H A DCustomFilterOperation.cpp56 PassRefPtr<FilterOperation> CustomFilterOperation::blend(const FilterOperation* from, double progress, bool blendToPassthrough) function in class:WebCore::CustomFilterOperation
72 m_parameters.blend(fromOp->m_parameters, progress, animatedParameters);
H A DCustomFilterParameterList.cpp70 void CustomFilterParameterList::blend(const CustomFilterParameterList& fromList, function in class:WebCore::CustomFilterParameterList
81 resultList.append(paramTo->blend(paramFrom, progress));
H A DValidatedCustomFilterOperation.cpp55 PassRefPtr<FilterOperation> ValidatedCustomFilterOperation::blend(const FilterOperation*, double progress, bool blendToPassthrough) function in class:WebCore::ValidatedCustomFilterOperation
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/
H A Dsvga_pipe_blend.c81 struct svga_blend_state *blend = CALLOC_STRUCT( svga_blend_state ); local
85 /* Fill in the per-rendertarget blend state. We currently only
90 * top of D3D9 API. Instead we try to simulate with various blend modes.
96 blend->need_white_fragments = TRUE;
97 blend->rt[i].blend_enable = TRUE;
98 blend->rt[i].srcblend = SVGA3D_BLENDOP_ONE;
99 blend->rt[i].dstblend = SVGA3D_BLENDOP_ONE;
100 blend->rt[i].blendeq = SVGA3D_BLENDEQ_SUBTRACT;
103 blend->rt[i].blend_enable = TRUE;
104 blend
204 svga_bind_blend_state(struct pipe_context *pipe, void *blend) argument
214 svga_delete_blend_state(struct pipe_context *pipe, void *blend) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/
H A Dst_atom_blend.c45 * Convert GLenum blend tokens to pipe tokens.
46 * Both blend factors and blend funcs are accepted.
49 translate_blend(GLenum blend) argument
51 switch (blend) {
52 /* blend functions */
64 /* blend factors */
172 * Figure out if blend enables/state are different per rt.
192 struct pipe_blend_state *blend = &st->state.blend; local
[all...]

Completed in 502 milliseconds

123456789