HomeSort by relevance Sort by last modified time
    Searched refs:TileMode (Results 51 - 75 of 225) sorted by null

1 23 4 5 6 7 8 9

  /external/skia/src/pdf/
SkPDFShader.h 63 SkShader::TileMode fImageTileModes[2];
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
BigGradientActivity.java 45 0xff333333, Shader.TileMode.CLAMP));
MoreShadersActivity.java 71 mScaledShader = new BitmapShader(texture, Shader.TileMode.MIRROR,
72 Shader.TileMode.MIRROR);
77 mScaled2Shader = new BitmapShader(texture, Shader.TileMode.MIRROR,
78 Shader.TileMode.MIRROR);
84 Color.RED, 0x7f00ff00, Shader.TileMode.CLAMP);
90 Color.YELLOW, Color.MAGENTA, Shader.TileMode.MIRROR);
GradientsActivity.java 98 BitmapShader shader = new BitmapShader(texture, Shader.TileMode.REPEAT,
99 Shader.TileMode.REPEAT);
124 Shader.TileMode.CLAMP);
149 Shader.TileMode.MIRROR);
205 mGradient = new LinearGradient(0, 0, 0, 1, 0xFF000000, 0, Shader.TileMode.CLAMP);
207 new int[] { 0xFFFF0000, 0xFF00FF00, 0xFF0000FF }, null, Shader.TileMode.CLAMP);
Alpha8BitmapActivity.java 57 Shader.TileMode.REPEAT, Shader.TileMode.REPEAT);
  /external/skia/src/core/
SkPictureShader.cpp 35 SkShader::TileMode tmx,
36 SkShader::TileMode tmy,
62 SkShader::TileMode fTmx, fTmy;
100 SkPictureShader::SkPictureShader(sk_sp<SkPicture> picture, TileMode tmx, TileMode tmy,
109 sk_sp<SkShader> SkPictureShader::Make(sk_sp<SkPicture> picture, TileMode tmx, TileMode tmy,
120 TileMode mx = (TileMode)buffer.read32();
121 TileMode my = (TileMode)buffer.read32()
    [all...]
SkBitmapProcState.h 31 SkBitmapProcInfo(const SkBitmapProvider&, SkShader::TileMode tmx, SkShader::TileMode tmy);
41 SkShader::TileMode fTileModeX;
42 SkShader::TileMode fTileModeY;
57 SkBitmapProcState(const SkBitmapProvider& prov, SkShader::TileMode tmx, SkShader::TileMode tmy)
  /external/skia/gm/
shadertext.cpp 50 static sk_sp<SkShader> MakeLinear(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) {
54 static sk_sp<SkShader> MakeRadial(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) {
62 static sk_sp<SkShader> MakeSweep(const SkPoint pts[2], const GradData& data, SkShader::TileMode) {
69 static sk_sp<SkShader> Make2Conical(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm) {
81 typedef sk_sp<SkShader> (*GradMaker)(const SkPoint pts[2], const GradData& data, SkShader::TileMode tm);
117 SkShader::TileMode tileModes[] = {
clippedbitmapshaders.cpp 45 ClippedBitmapShadersGM(SkShader::TileMode mode, bool hq=false)
50 SkShader::TileMode fMode;
giantbitmap.cpp 23 SkShader::TileMode fMode;
63 GiantBitmapGM(SkShader::TileMode mode, bool doFilter, bool doRotate) : fBM(nullptr) {
  /external/skia/fuzz/
FuzzGradients.cpp 27 std::vector<SkScalar>* pos, SkShader::TileMode* mode) {
35 *mode = static_cast<SkShader::TileMode>(m);
69 SkShader::TileMode mode,
114 SkShader::TileMode mode;
152 SkShader::TileMode mode;
190 SkShader::TileMode mode;
224 SkShader::TileMode mode;
  /external/skia/src/effects/gradients/
SkGradientShaderPriv.h 94 SkShader::TileMode fTileMode;
212 TileMode fTileMode;
266 TileMode getTileMode() const { return fTileMode; }
336 SkShader::TileMode tileMode,
342 , fTileMode(tileMode)
349 SkShader::TileMode fTileMode;
423 SkShader::TileMode fTileMode;
444 SkShader::TileMode fTileMode;
  /external/skia/bench/
SkLinearBitmapPipelineBench.cpp 26 SkShader::TileMode xTile,
27 SkShader::TileMode yTile)
36 static SkString tileName(const char* pre, SkShader::TileMode mode) {
111 SkShader::TileMode fXTile;
112 SkShader::TileMode fYTile;
123 SkShader::TileMode xTile,
124 SkShader::TileMode yTile)
172 SkShader::TileMode xTile,
173 SkShader::TileMode yTile)
TileBench.cpp 40 ConstXTileBench(SkShader::TileMode xTile,
41 SkShader::TileMode yTile,
GradientBench.cpp 50 SkShader::TileMode tm, float scale, bool force4f) {
57 SkShader::TileMode tm, float scale, bool force4f) {
67 SkShader::TileMode tm, float scale, bool force4f) {
76 SkShader::TileMode tm, float scale, bool force4f) {
89 SkShader::TileMode tm, float scale, bool force4f) {
102 SkShader::TileMode tm, float scale, bool force4f) {
116 SkShader::TileMode tm, float scale, bool force4f) {
129 SkShader::TileMode tm, float scale, bool force4f);
159 static const char* tilemodename(SkShader::TileMode tm) {
168 SkDEBUGFAIL("unknown tilemode");
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/drawable/cts/
ThemedDrawableTest.java 28 import android.graphics.Shader.TileMode;
81 assertEquals(TileMode.MIRROR, d.getTileModeX());
82 assertEquals(TileMode.MIRROR, d.getTileModeY());
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/
ShapeDrawable1.java 47 null, Shader.TileMode.MIRROR);
55 return new BitmapShader(bm, Shader.TileMode.REPEAT,
56 Shader.TileMode.REPEAT);
Vertices.java 54 Shader s = new BitmapShader(bm, Shader.TileMode.CLAMP,
55 Shader.TileMode.CLAMP);
  /external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
XYPlotWithBgImgActivity.java 17 private Shader WHITE_SHADER = new LinearGradient(1, 1, 1, 1, Color.WHITE, Color.WHITE, Shader.TileMode.REPEAT);
104 Shader.TileMode.REPEAT
117 Shader.TileMode.REPEAT,
118 Shader.TileMode.REPEAT);
  /external/skia/samplecode/
SampleTiling.cpp 43 SkShader::TileMode tmx, SkShader::TileMode tmy) {
91 static const SkShader::TileMode gModes[] = { SkShader::kClamp_TileMode, SkShader::kRepeat_TileMode, SkShader::kMirror_TileMode };
  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Gradient_Delegate.java 19 import android.graphics.Shader.TileMode;
73 * on the color and position lists, as well as the {@link TileMode}
81 private final TileMode mTileMode;
84 protected GradientPaint(int[] colors, float[] positions, TileMode tileMode) {
87 mTileMode = tileMode;
125 * will use {@link TileMode} value to convert it into a [0,1] value.
  /frameworks/opt/bitmap/src/com/android/bitmap/drawable/
CircularBitmapDrawable.java 29 import android.graphics.Shader.TileMode;
136 shader = new BitmapShader(bitmap, TileMode.CLAMP, TileMode.CLAMP);
  /external/skia/src/gpu/effects/
GrSimpleTextureEffect.cpp 98 static const SkShader::TileMode kTileModes[] = {
103 SkShader::TileMode tileModes[] = {
  /frameworks/opt/chips/src/com/android/ex/chips/
CircularImageView.java 98 BitmapShader shader = new BitmapShader(bitmap, Shader.TileMode.CLAMP,
99 Shader.TileMode.CLAMP);
  /packages/apps/Launcher3/src/com/android/launcher3/badge/
BadgeInfo.java 141 mNotificationIcon = new BitmapShader(iconBitmap, Shader.TileMode.CLAMP,
142 Shader.TileMode.CLAMP);

Completed in 860 milliseconds

1 23 4 5 6 7 8 9