HomeSort by relevance Sort by last modified time
    Searched refs:toColor (Results 1 - 7 of 7) sorted by null

  /external/webkit/Source/WebCore/svg/
ColorDistance.cpp 36 ColorDistance::ColorDistance(const Color& fromColor, const Color& toColor)
37 : m_redDiff(toColor.red() - fromColor.red())
38 , m_greenDiff(toColor.green() - fromColor.green())
39 , m_blueDiff(toColor.blue() - fromColor.blue())
ColorDistance.h 31 ColorDistance(const Color& fromColor, const Color& toColor);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLCanvas.java 111 public abstract void drawMixed(BasicTexture from, int toColor,
118 public abstract void drawMixed(BasicTexture from, int toColor,
GLES11Canvas.java 451 int toColor, float ratio, int x, int y, int w, int h) {
452 drawMixed(from, toColor, ratio, x, y, w, h, mAlpha);
471 private void setMixedColor(int toColor, float ratio, float alpha) {
487 // RGB component are get from toColor and will used as SRC1
488 float colorScale = scale * (toColor >>> 24) / (0xff * 0xff);
489 setTextureColor(((toColor >>> 16) & 0xff) * colorScale,
490 ((toColor >>> 8) & 0xff) * colorScale,
491 (toColor & 0xff) * colorScale, combo);
513 public void drawMixed(BasicTexture from, int toColor, float ratio,
521 fillRect(target.left, target.top, target.width(), target.height(), toColor);
    [all...]
GLES20Canvas.java 758 public void drawMixed(BasicTexture texture, int toColor, float ratio, int x, int y, int w, int h) {
761 drawMixed(texture, toColor, ratio, mTempSourceRect, mTempTargetRect);
765 public void drawMixed(BasicTexture texture, int toColor, float ratio, RectF source, RectF target) {
780 fillRect(target.left, target.top, target.width(), target.height(), toColor);
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLCanvasStub.java 126 public void drawMixed(BasicTexture from, int toColor,
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 407 Color toColor = (b->*m_getter)();
409 if (!fromColor.isValid() && !toColor.isValid())
414 if (!toColor.isValid())
415 toColor = b->color();
417 return fromColor == toColor;
423 Color toColor = (b->*m_getter)();
425 if (!fromColor.isValid() && !toColor.isValid())
430 if (!toColor.isValid())
431 toColor = b->color();
432 (dst->*m_setter)(blendFunc(anim, fromColor, toColor, progress))
    [all...]

Completed in 617 milliseconds