Searched refs:toColor (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/libs/hwui/ |
D | PropertyValuesHolder.cpp | 38 void ColorEvaluator::evaluate(SkColor* outColor, const SkColor& fromColor, const SkColor& toColor, in evaluate() argument 40 float a = lerp(SkColorGetA(fromColor) / 255.0f, SkColorGetA(toColor) / 255.0f, fraction); in evaluate() 41 float r = lerp(linearize(SkColorGetR(fromColor)), linearize(SkColorGetR(toColor)), fraction); in evaluate() 42 float g = lerp(linearize(SkColorGetG(fromColor)), linearize(SkColorGetG(toColor)), fraction); in evaluate() 43 float b = lerp(linearize(SkColorGetB(fromColor)), linearize(SkColorGetB(toColor)), fraction); in evaluate()
|
D | PropertyValuesHolder.h | 112 static SkColor interpolateColors(SkColor fromColor, SkColor toColor, float fraction);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tileimpl/ |
D | QSIconViewImpl.java | 183 private void animateGrayScale(int fromColor, int toColor, ImageView iv, in animateGrayScale() argument 187 .setFinalImageTintList(ColorStateList.valueOf(toColor)); in animateGrayScale() 191 final float toAlpha = Color.alpha(toColor); in animateGrayScale() 193 final float toChannel = Color.red(toColor); in animateGrayScale() 212 setTint(iv, toColor); in animateGrayScale()
|
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/ |
D | GLCanvas.java | 109 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument 116 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument
|
D | GLES20Canvas.java | 758 …public void drawMixed(BasicTexture texture, int toColor, float ratio, int x, int y, int w, int h) { in drawMixed() argument 761 drawMixed(texture, toColor, ratio, mTempSourceRect, mTempTargetRect); in drawMixed() 765 …public void drawMixed(BasicTexture texture, int toColor, float ratio, RectF source, RectF target) { in drawMixed() argument 780 fillRect(target.left, target.top, target.width(), target.height(), toColor); in drawMixed()
|