HomeSort by relevance Sort by last modified time
    Searched full:bitmapshader (Results 1 - 25 of 35) sorted by null

1 2

  /cts/tests/tests/graphics/src/android/graphics/cts/
BitmapShaderTest.java 23 import android.graphics.BitmapShader;
33 @TestTargetClass(BitmapShader.class)
44 method = "BitmapShader",
55 BitmapShader shader = new BitmapShader(tile, Shader.TileMode.REPEAT,
ComposeShaderTest.java 23 import android.graphics.BitmapShader;
93 BitmapShader blueShader = new BitmapShader(greenBitmap, TileMode.CLAMP, TileMode.CLAMP);
94 BitmapShader redShader = new BitmapShader(cyanBitmap, TileMode.CLAMP, TileMode.CLAMP);
ShaderTest.java 20 import android.graphics.BitmapShader;
58 Shader shader = new BitmapShader(bitmap, Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
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,
MoreShadersActivity.java 23 import android.graphics.BitmapShader;
47 private BitmapShader mScaledShader;
58 private BitmapShader mScaled2Shader;
70 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
76 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
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,
LinesActivity.java 24 import android.graphics.BitmapShader;
62 private final BitmapShader mShader;
99 mShader = new BitmapShader(mBitmap1, BitmapShader.TileMode.MIRROR,
100 BitmapShader.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);
GradientsActivity.java 23 import android.graphics.BitmapShader;
98 BitmapShader shader = new BitmapShader(texture, Shader.TileMode.REPEAT,
  /external/skia/src/animator/
SkDrawShader.h 27 DECLARE_DRAW_MEMBER_INFO(BitmapShader);
SkDrawShader.cpp 82 // oops, bitmapshader no longer takes filterBitmap, but deduces it at
SkDisplayType.cpp 110 CASE_DRAW_NEW(BitmapShader);
265 CASE_GET_DRAW_INFO(BitmapShader);
432 DRAW_NAME("bitmapShader", SkType_BitmapShader),
  /frameworks/base/graphics/java/android/graphics/
BitmapShader.java 23 public class BitmapShader extends Shader {
38 public BitmapShader(Bitmap bitmap, TileMode tileX, TileMode tileY) {
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
BitmapShader_Delegate.java 27 * Delegate implementing the native methods of android.graphics.BitmapShader
29 * Through the layoutlib_create tool, the original native methods of BitmapShader have been
34 * it and the original BitmapShader class.
120 "Unable to inverse matrix in BitmapShader", e, null /*data*/);
129 "Unable to inverse matrix in BitmapShader", e, null /*data*/);
  /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,
Xfermodes.java 21 import android.graphics.BitmapShader;
109 mBG = new BitmapShader(bm,
ShapeDrawable1.java 55 return new BitmapShader(bm, Shader.TileMode.REPEAT,
Vertices.java 54 Shader s = new BitmapShader(bm, Shader.TileMode.CLAMP,
  /frameworks/base/core/java/android/view/
GLES20RecordingCanvas.java 20 import android.graphics.BitmapShader;
88 if (shader instanceof BitmapShader) {
89 mDisplayList.mBitmaps.add(((BitmapShader) shader).mBitmap);
  /packages/apps/Browser/src/com/android/browser/
TabBar.java 28 import android.graphics.BitmapShader;
84 private BitmapShader mActiveShader;
85 private BitmapShader mInactiveShader;
393 mActiveShader = new BitmapShader(activeTexture,
397 mInactiveShader = new BitmapShader(inactiveTexture,
  /frameworks/base/core/java/android/widget/
ProgressBar.java 24 import android.graphics.BitmapShader;
349 final BitmapShader bitmapShader = new BitmapShader(tileBitmap,
351 shapeDrawable.getPaint().setShader(bitmapShader);
368 * given a tiling BitmapShader.
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 24 import android.graphics.BitmapShader;
349 final BitmapShader bitmapShader = new BitmapShader(tileBitmap,
351 shapeDrawable.getPaint().setShader(bitmapShader);
368 * given a tiling BitmapShader.
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
CreateInfo.java 125 "android.graphics.BitmapShader",
  /frameworks/base/graphics/java/android/graphics/drawable/
BitmapDrawable.java 23 import android.graphics.BitmapShader;
377 state.mPaint.setShader(new BitmapShader(bitmap,
  /external/skia/src/core/
SkBitmapProcShader.cpp 287 str->printf("BitmapShader: [%d %d %d",

Completed in 824 milliseconds

1 2