HomeSort by relevance Sort by last modified time
    Searched refs:blend (Results 76 - 100 of 149) sorted by null

1 2 34 5 6

  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
utilities.h 50 D3DBLEND ConvertBlendFunc(GLenum blend);
utilities.cpp 434 D3DBLEND ConvertBlendFunc(GLenum blend)
438 switch (blend)
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 296 // of values; if not we do a matrix blend)
316 toValue->value()->operations()[i]->blend(fromValue->value()->at(i),
324 transformMatrix.blend(source, progress);
  /frameworks/base/libs/hwui/
OpenGLRenderer.cpp 268 if (mCaches.blend) {
370 mCaches.blend = true;
829 * changing the GL blend functions for the GL_FUNC_ADD blend equation to
1081 bool blend = layer->isBlend() || alpha < 1.0f; local
1083 layer->getTexture(), alpha, layer->getMode(), blend, local
1747 bool blend = (mColorSet && mColorA < 1.0f) || local
    [all...]
Caches.h 249 bool blend; member in class:android::uirenderer::Caches
OpenGLRenderer.h 754 * @param blend True if the texture contains an alpha channel
757 float alpha, SkXfermode::Mode mode, bool blend);
785 * @param blend True if the texture contains an alpha channel
796 float alpha, SkXfermode::Mode mode, bool blend,
    [all...]
TextDropShadowCache.cpp 191 texture->blend = true;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
GameView.java 489 static int blend(float alpha, int from, int to) {
496 paint.setARGB(blend(alpha, a1, a2), blend(alpha, r1, r2),
497 blend(alpha, g1, g2), blend(alpha, b1, b2));
  /external/webkit/Source/WebCore/css/
CSSGradientValue.cpp 87 static inline int blend(int from, int to, float progress) function in namespace:WebCore
92 static inline Color blend(const Color& from, const Color& to, float progress) function in namespace:WebCore
95 return Color(blend(from.red(), to.red(), progress),
96 blend(from.green(), to.green(), progress),
97 blend(from.blue(), to.blue(), progress),
98 blend(from.alpha(), to.alpha(), progress));
337 Color blendedColor = blend(stops[firstZeroOrGreaterIndex - 1].color, stops[firstZeroOrGreaterIndex].color, interStopProportion);
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/textures/blending/
TextureBlenderDDS.java 32 public Texture blend(float[] materialColor, Texture texture, float[] color, float affectFactor, int blendType, boolean neg, BlenderContext blenderContext) { method in class:TextureBlenderDDS
TextureBlenderAWT.java 42 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
  /external/webkit/Source/WebCore/platform/
Length.h 177 Length blend(const Length& from, float progress) const function in struct:WebCore::Length
179 // Blend two lengths to produce a new length that is in between them. Used for animation.
  /external/webkit/Source/WebCore/platform/graphics/
Color.h 124 Color blend(const Color&) const;
  /external/webkit/Source/WebCore/platform/graphics/transforms/
AffineTransform.h 120 void blend(const AffineTransform& from, double progress);
  /external/skia/gm/
Android.mk 23 blend.cpp \
  /external/freetype/include/freetype/internal/
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...]
  /frameworks/native/cmds/flatland/
Main.cpp 84 0, staticGradient, blend,
110 0, staticGradient, blend,
Composers.cpp 196 Composer* blend() { function in namespace:android
  /external/webkit/Source/WebCore/platform/graphics/wince/
SharedBitmap.cpp 284 static const BLENDFUNCTION blend = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA }; local
286 srcRect.x(), srcRect.y(), srcRect.width(), srcRect.height(), blend);
534 static const BLENDFUNCTION blend = { AC_SRC_OVER, 0, 255, AC_SRC_ALPHA }; local
536 hmemdc.get(), 0, 0, srcRectWin.right, srcRectWin.bottom, blend);
  /external/skia/legacy/src/effects/
SkGradientShader.cpp 483 int blend) {
485 int a = blend8(SkGetPackedA32(s0), SkGetPackedA32(s1), blend);
486 int r = blend8(SkGetPackedR32(s0), SkGetPackedR32(s1), blend);
487 int g = blend8(SkGetPackedG32(s0), SkGetPackedG32(s1), blend);
488 int b = blend8(SkGetPackedB32(s0), SkGetPackedB32(s1), blend);
492 int otherBlend = 256 - blend;
495 U32 t0 = (((s0 & 0xFF00FF) * blend + (s1 & 0xFF00FF) * otherBlend) >> 8) & 0xFF00FF;
496 U32 t1 = (((s0 >> 8) & 0xFF00FF) * blend + ((s1 >> 8) & 0xFF00FF) * otherBlend) & 0xFF00FF00;
500 return ((((s0 & 0xFF00FF) * blend + (s1 & 0xFF00FF) * otherBlend) >> 8) & 0xFF00FF) |
501 ((((s0 >> 8) & 0xFF00FF) * blend + ((s1 >> 8) & 0xFF00FF) * otherBlend) & 0xFF00FF00)
    [all...]
  /frameworks/native/opengl/tests/hwc/
hwcCommit.cpp 173 int32_t blend; member in class:Rectangle
562 // TODO: make measurments with background blend other than
564 // background blend of HWC_BLENDING_NONE, with the
565 // blend type of the foregound being varied.
592 testPrintI("overlapping blend: none");
601 testPrintI("overlapping blend: premult");
610 testPrintI("overlapping blend: coverage");
705 // For each of the blend types
709 rect.blend = id;
    [all...]
  /external/webkit/Source/WebCore/rendering/
RenderMenuList.cpp 450 backgroundColor = style()->visitedDependentColor(CSSPropertyBackgroundColor).blend(backgroundColor);
455 return Color(Color::white).blend(backgroundColor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLState.java 219 IGLProperty blend = new GLCompositeProperty(GLStateType.BLEND, local
227 depthTest, depthFunc, blend, dither);
  /system/core/libpixelflinger/codeflinger/
GGLAssembler.h 335 bool blend : 1; member in struct:android::GGLAssembler::component_info_t
366 void blend( component_t& dest,

Completed in 529 milliseconds

1 2 34 5 6