HomeSort by relevance Sort by last modified time
    Searched refs:mTexture (Results 1 - 15 of 15) sorted by 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);
ShadersActivity.java 54 private Bitmap mTexture;
62 mTexture = BitmapFactory.decodeResource(c.getResources(), R.drawable.sunset1);
63 mTexWidth = mTexture.getWidth();
64 mTexHeight = mTexture.getHeight();
68 mRepeatShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
71 mTranslatedShader = new BitmapShader(mTexture, Shader.TileMode.REPEAT,
78 mScaledShader = new BitmapShader(mTexture, Shader.TileMode.MIRROR,
105 canvas.drawBitmap(mTexture, 0.0f, 0.0f, null);
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FadeInTexture.java 31 private final BasicTexture mTexture;
41 mTexture = texture;
42 mWidth = mTexture.getWidth();
43 mHeight = mTexture.getHeight();
44 mIsOpaque = mTexture.isOpaque();
55 canvas.drawMixed(mTexture, mColor, getRatio(), x, y, w, h);
57 mTexture.draw(canvas, x, y, w, h);
PhotoView.java 602 if (prevNail.mTexture != null) prevNail.mTexture.recycle();
603 prevNail.mTexture = mTileView.mBackupImage;
604 mTileView.mBackupImage = nextNail.mTexture;
605 nextNail.mTexture = null;
614 if (nextNail.mTexture != null) nextNail.mTexture.recycle();
615 nextNail.mTexture = mTileView.mBackupImage;
616 mTileView.mBackupImage = prevNail.mTexture;
617 nextNail.mTexture = null
    [all...]
  /frameworks/base/libs/hwui/
Texture.h 127 AutoTexture(const Texture* texture): mTexture(texture) { }
129 if (mTexture && mTexture->cleanup) {
130 glDeleteTextures(1, &mTexture->id);
131 delete mTexture;
136 const Texture* mTexture;
SkiaShader.cpp 94 SkiaShader(kBitmap, key, tileX, tileY, matrix, blend), mBitmap(bitmap), mTexture(NULL) {
108 mTexture = texture;
134 Texture* texture = mTexture;
135 mTexture = NULL;
SkiaShader.h 165 Texture* mTexture;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
TrackingPatternView.java 30 private Bitmap mTexture;
38 mTexture = BitmapFactory.decodeResource(getResources(),
40 mTextureWidth = mTexture.getWidth();
41 mTextureHeight = mTexture.getHeight();
49 final Bitmap texture = mTexture;
  /frameworks/base/core/java/android/view/
GLES20TextureLayer.java 29 private int mTexture;
37 mTexture = layerInfo[0];
46 return mLayer != 0 && mTexture != 0;
69 mSurface = new SurfaceTexture(mTexture, false);
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.cpp     [all...]
Texture.h 99 Texture *mTexture;
249 IDirect3DTexture9 *mTexture;
309 IDirect3DCubeTexture9 *mTexture;
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 189 Matrix4f mTexture;
210 mTexture = new Matrix4f();
263 mTexture.load(m);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 74 private Allocation mTexture;
169 mTexture = Allocation.createFromBitmapResource(mRS, mResources, mTexId);
171 mScript.set_gTlinetexture(mTexture);
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
MatrixTrackingGL.java 51 private MatrixStack mTexture;
73 mTexture = new MatrixStack();
428 mCurrent = mTexture;

Completed in 1202 milliseconds