Home
last modified time | relevance | path

Searched refs:toColor (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
DGLES11Canvas.java451 int toColor, float ratio, int x, int y, int w, int h) { in drawMixed() argument
452 drawMixed(from, toColor, ratio, x, y, w, h, mAlpha); in drawMixed()
471 private void setMixedColor(int toColor, float ratio, float alpha) { in setMixedColor() argument
488 float colorScale = scale * (toColor >>> 24) / (0xff * 0xff); in setMixedColor()
489 setTextureColor(((toColor >>> 16) & 0xff) * colorScale, in setMixedColor()
490 ((toColor >>> 8) & 0xff) * colorScale, in setMixedColor()
491 (toColor & 0xff) * colorScale, combo); in setMixedColor()
513 public void drawMixed(BasicTexture from, int toColor, float ratio, in drawMixed() argument
521 fillRect(target.left, target.top, target.width(), target.height(), toColor); in drawMixed()
534 || !Utils.isOpaque(toColor) || alpha < OPAQUE_ALPHA)); in drawMixed()
[all …]
DGLCanvas.java111 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument
118 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument
DGLES20Canvas.java758 …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()
/packages/apps/Launcher3/WallpaperPicker/src/com/android/gallery3d/glrenderer/
DGLCanvas.java109 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument
116 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument
DGLES20Canvas.java757 …public void drawMixed(BasicTexture texture, int toColor, float ratio, int x, int y, int w, int h) { in drawMixed() argument
760 drawMixed(texture, toColor, ratio, mTempSourceRect, mTempTargetRect); in drawMixed()
764 …public void drawMixed(BasicTexture texture, int toColor, float ratio, RectF source, RectF target) { in drawMixed() argument
779 fillRect(target.left, target.top, target.width(), target.height(), toColor); in drawMixed()