/packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/ |
D | GLES11Canvas.java | 451 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 …]
|
D | GLCanvas.java | 111 public abstract void drawMixed(BasicTexture from, int toColor, in drawMixed() argument 118 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()
|
/packages/apps/Launcher3/WallpaperPicker/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 | 757 …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()
|