HomeSort by relevance Sort by last modified time
    Searched refs:BitmapShader (Results 1 - 25 of 60) sorted by null

1 2 3

  /frameworks/base/graphics/java/android/graphics/
BitmapShader.java 23 public class BitmapShader extends Shader {
41 public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {
54 final BitmapShader copy = new BitmapShader(mBitmap, mTileX, mTileY);
  /external/chromium_org/third_party/skia/src/animator/
SkDrawShader.h 17 DECLARE_DRAW_MEMBER_INFO(BitmapShader);
  /external/skia/src/animator/
SkDrawShader.h 17 DECLARE_DRAW_MEMBER_INFO(BitmapShader);
  /cts/tests/tests/graphics/src/android/graphics/cts/
ShaderTest.java 20 import android.graphics.BitmapShader;
36 Shader shader = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
ComposeShaderTest.java 20 import android.graphics.BitmapShader;
79 BitmapShader blueShader = new BitmapShader(greenBitmap, TileMode.CLAMP, TileMode.CLAMP);
80 BitmapShader redShader = new BitmapShader(cyanBitmap, TileMode.CLAMP, TileMode.CLAMP);
BitmapShaderTest.java 20 import android.graphics.BitmapShader;
46 BitmapShader shader = new BitmapShader(tile, Shader.TileMode.REPEAT,
  /cts/tests/tests/uirendering/src/android/uirendering/cts/testinfrastructure/
ResourceModifier.java 23 import android.graphics.BitmapShader;
39 public final BitmapShader repeatShader;
40 public final BitmapShader translatedShader;
41 public final BitmapShader scaledShader;
62 repeatShader = new BitmapShader(bitmap, Shader.TileMode.REPEAT,
65 translatedShader = new BitmapShader(bitmap, Shader.TileMode.REPEAT,
72 scaledShader = new BitmapShader(bitmap, Shader.TileMode.MIRROR,
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ShadersActivity.java 23 import android.graphics.BitmapShader;
43 private BitmapShader mRepeatShader;
44 private BitmapShader mTranslatedShader;
45 private BitmapShader mScaledShader;
68 mRepeatShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
71 mTranslatedShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
78 mScaledShader = new BitmapShader(mTexture, Shader.TileMode.MIRROR,
AdvancedBlendActivity.java 23 import android.graphics.BitmapShader;
45 private BitmapShader mScaledShader;
58 private BitmapShader mScaled2Shader;
69 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
75 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
Alpha8BitmapActivity.java 23 import android.graphics.BitmapShader;
56 BitmapShader shader = new BitmapShader(texture,
LinesActivity.java 24 import android.graphics.BitmapShader;
62 private final BitmapShader mShader;
99 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR,
100 BitmapShader.TileMode.MIRROR);
MoreShadersActivity.java 23 import android.graphics.BitmapShader;
47 private BitmapShader mScaledShader;
58 private BitmapShader mScaled2Shader;
71 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
77 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
PathsActivity.java 23 import android.graphics.BitmapShader;
45 private final BitmapShader mShader;
82 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR,
83 BitmapShader.TileMode.MIRROR);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BitmapHelper.java 20 import android.graphics.BitmapShader;
44 paint.setShader(new BitmapShader(input, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP));
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
ResourceModifiers.java 24 import android.graphics.BitmapShader;
35 public final BitmapShader mRepeatShader;
36 public final BitmapShader mTranslatedShader;
37 public final BitmapShader mScaledShader;
72 mRepeatShader = new BitmapShader(mBitmap, Shader.TileMode.REPEAT,
75 mTranslatedShader = new BitmapShader(mBitmap, Shader.TileMode.REPEAT,
82 mScaledShader = new BitmapShader(mBitmap, Shader.TileMode.MIRROR,
  /frameworks/opt/chips/src/com/android/ex/chips/
CircularImageView.java 5 import android.graphics.BitmapShader;
98 BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP,
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
CircularBitmapDrawable.java 21 import android.graphics.BitmapShader;
110 * BitmapShader.
119 * BitmapShader. The alpha parameter is the value from 0f to 1f to attenuate the alpha by.
124 BitmapShader shader = (BitmapShader) mBitmapPaint.getShader();
126 shader = new BitmapShader(bitmap, TileMode.CLAMP, TileMode.CLAMP);
  /frameworks/support/v4/donut/android/support/v4/graphics/drawable/
RoundedBitmapDrawable.java 20 import android.graphics.BitmapShader;
49 private BitmapShader mBitmapShader;
318 mBitmapShader = new BitmapShader(mBitmap, Shader.TileMode.CLAMP, Shader.TileMode.CLAMP);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
TintRatingBar.java 21 import android.graphics.BitmapShader;
113 final BitmapShader bitmapShader = new BitmapShader(tileBitmap,
115 shapeDrawable.getPaint().setShader(bitmapShader);
126 * given a tiling BitmapShader.
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
Patterns.java 74 mShader1 = new BitmapShader(makeBitmap1(), Shader.TileMode.REPEAT,
76 mShader2 = new BitmapShader(makeBitmap2(), Shader.TileMode.REPEAT,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewThumbnail.java 24 import android.graphics.BitmapShader;
54 BitmapShader mBitmapShader;
127 mBitmapShader = new BitmapShader(bm, Shader.TileMode.CLAMP,
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/colorpicker/
ColorBrightnessView.java 21 import android.graphics.BitmapShader;
92 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
ColorCompareView.java 22 import android.graphics.BitmapShader;
83 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
ColorHueView.java 21 import android.graphics.BitmapShader;
197 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
ColorOpacityView.java 22 import android.graphics.BitmapShader;
97 BitmapShader bs = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);

Completed in 5315 milliseconds

1 2 3