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

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
FadeInTexture.java 27 private final TiledTexture mTexture;
32 mTexture = texture;
38 mTexture.drawMixed(canvas, mColor, getRatio(), x, y, w, h);
40 mTexture.draw(canvas, x, y, w, h);
FadeOutTexture.java 26 private final BasicTexture mTexture;
30 mTexture = texture;
38 mTexture.draw(canvas, x, y, w, h);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TiledScreenNail.java 53 private TiledTexture mTexture;
59 mTexture = new TiledTexture(bitmap);
102 if (newer.mTexture != null) {
104 if (mTexture != null) mTexture.recycle();
106 mTexture = newer.mTexture;
108 newer.mTexture = null;
136 if (mTexture != null) {
137 mTexture.recycle()
    [all...]
PreparePageFadeoutTexture.java 14 private RawTexture mTexture;
26 mTexture = new RawTexture(w, h, true);
38 return mTexture;
49 canvas.beginRenderTarget(mTexture);
53 mTexture = null;
56 mTexture = null;
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ThinPatchesActivity.java 48 private Bitmap mTexture;
58 mTexture = Bitmap.createBitmap(4, 3, Bitmap.Config.ARGB_8888);
59 mTexture.setPixel(0, 0, 0xffff0000);
60 mTexture.setPixel(1, 0, 0xffffffff);
61 mTexture.setPixel(2, 0, 0xff000000);
62 mTexture.setPixel(3, 0, 0xffff0000);
63 mTexture.setPixel(0, 1, 0xffff0000);
64 mTexture.setPixel(1, 1, 0xff000000);
65 mTexture.setPixel(2, 1, 0xffffffff);
66 mTexture.setPixel(3, 1, 0xffff0000)
    [all...]
FramebufferBlendActivity.java 48 private Bitmap mTexture;
53 mTexture = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset1);
54 mTexWidth = mTexture.getWidth();
55 mTexHeight = mTexture.getHeight();
90 canvas.drawBitmap(mTexture, 0.0f, 0.0f, mPaint);
106 canvas.drawBitmap(mTexture, 0.0f, 0.0f, mPaint);