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

  /frameworks/support/compat/src/main/java/androidx/core/graphics/drawable/
RoundedBitmapDrawable.java 53 private final BitmapShader mBitmapShader;
244 if (mBitmapShader != null) {
250 mBitmapShader.setLocalMatrix(mShaderMatrix);
251 mPaint.setShader(mBitmapShader);
307 mPaint.setShader(mBitmapShader);
334 mPaint.setShader(mBitmapShader);
390 mBitmapShader = new BitmapShader(mBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
393 mBitmapShader = null;
  /packages/apps/Launcher3/quickstep/src/com/android/quickstep/views/
TaskThumbnailView.java 85 protected BitmapShader mBitmapShader;
124 mBitmapShader = new BitmapShader(bm, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
125 mPaint.setShader(mBitmapShader);
129 mBitmapShader = null;
185 final boolean drawBackgroundOnly = mTask == null || mTask.isLocked || mBitmapShader == null
206 if (mBitmapShader != null) {
220 if (mBitmapShader != null && mThumbnailData != null) {
271 mBitmapShader.setLocalMatrix(mMatrix);
278 mPaint.setShader(mBitmapShader);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewThumbnail.java 81 protected BitmapShader mBitmapShader;
151 } else if (mBitmapShader != null && thumbnailWidth > 0 && thumbnailHeight > 0) {
186 mBitmapShader = new BitmapShader(bm, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
187 mDrawPaint.setShader(mBitmapShader);
195 mBitmapShader = null;
208 if (mBitmapShader != null) {
247 if (mBitmapShader != null && mThumbnailData != null) {
286 mBitmapShader.setLocalMatrix(mMatrix);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/grid/
GridTaskViewThumbnail.java 81 if (mBitmapShader != null && thumbnailWidth > 0 && thumbnailHeight > 0) {
177 } else if (mBitmapShader != null && thumbnailWidth > 0 && thumbnailHeight > 0) {

Completed in 126 milliseconds