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

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
FadeInTexture.java 26 private final TiledTexture mTexture;
31 mTexture = texture;
37 mTexture.drawMixed(canvas, mColor, getRatio(), x, y, w, h);
39 mTexture.draw(canvas, x, y, w, h);
FadeOutTexture.java 25 private final BasicTexture mTexture;
29 mTexture = texture;
37 mTexture.draw(canvas, x, y, w, h);
TiledScreenNail.java 52 private TiledTexture mTexture;
58 mTexture = new TiledTexture(bitmap);
106 if (newer.mTexture != null) {
108 if (mTexture != null) mTexture.recycle();
110 mTexture = newer.mTexture;
112 newer.mTexture = null;
140 if (mTexture != null) {
141 mTexture.recycle()
    [all...]
PreparePageFadeoutTexture.java 12 private RawTexture mTexture;
24 mTexture = new RawTexture(w, h, true);
36 return mTexture;
47 canvas.beginRenderTarget(mTexture);
51 mTexture = null;
54 mTexture = null;
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
TextureParam.java 37 TextureBase mTexture;
49 mTexture = t;
53 return mTexture;
58 if (mTexture != null) {
59 mData.texture = mTexture.getRsData(false).getAllocation();
SceneManager.java 79 private FragmentShader mTexture;
371 if (sSceneManager.mTexture == null) {
384 sSceneManager.mTexture = fb.create();
385 sSceneManager.mTexture.mProgram.bindSampler(Sampler.CLAMP_LINEAR_MIP_LINEAR(rs), 0);
388 return sSceneManager.mTexture;
468 mTexture = null;
  /frameworks/base/core/java/android/view/
GLES20TextureLayer.java 30 private int mTexture;
38 mTexture = layerInfo[0];
47 return mLayer != 0 && mTexture != 0;
71 mSurface = new SurfaceTexture(mTexture, false);
81 mSurface.attachToGLContext(mTexture);
  /frameworks/base/libs/hwui/
Texture.h 147 AutoTexture(const Texture* texture): mTexture(texture) { }
149 if (mTexture && mTexture->cleanup) {
150 glDeleteTextures(1, &mTexture->id);
151 delete mTexture;
156 const Texture* mTexture;
SkiaShader.h 153 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/tests/HwAccelerationTest/src/com/android/test/hwui/
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);
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...]
  /external/replicaisland/src/com/replica/replicaisland/
ScrollerComponent.java 32 private Texture mTexture;
66 mTexture = null;
85 mTexture = texture;
99 background.setTexture(mTexture);
DrawableBitmap.java 27 private Texture mTexture;
37 mTexture = texture;
48 mTexture = null;
102 final Texture texture = mTexture;
207 mTexture = texture;
212 return mTexture;
FadeDrawableComponent.java 27 private Texture mTexture;
47 mTexture = null;
108 if (mTexture != null) {
115 bitmap.resize((int)mTexture.width, (int)mTexture.height);
120 bitmap.setTexture(mTexture);
150 mTexture = texture;
TiledVertexGrid.java 30 private Texture mTexture;
46 mTexture = texture;
64 final Texture texture = mTexture;
133 if (!mGenerated && world != null && gl != null && mTexture != null) {
159 final Texture texture = mTexture;
  /external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/
Texture.h 99 Texture *mTexture;
249 IDirect3DTexture9 *mTexture;
309 IDirect3DCubeTexture9 *mTexture;
  /frameworks/base/libs/hwui/font/
CacheTexture.h 74 mTexture(NULL), mTextureId(0), mWidth(width), mHeight(height),
103 if (mTexture) {
104 delete[] mTexture;
105 mTexture = NULL;
118 if (!mTexture) {
119 mTexture = new uint8_t[mWidth * mHeight];
155 return mTexture;
197 uint8_t* mTexture;
  /frameworks/base/graphics/java/android/renderscript/
ProgramVertexFixedFunction.java 207 Matrix4f mTexture;
229 mTexture = new Matrix4f();
286 mTexture.load(m);
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
GenericWaveRS.java 70 private Allocation mTexture;
153 mTexture = Allocation.createFromBitmapResource(mRS, mResources, mTexId);
155 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 630 milliseconds