/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);
|
/external/chromium_org/third_party/angle/src/libGLESv2/renderer/ |
RenderTarget11.h | 41 ID3D11Texture2D *mTexture;
|
TextureStorage9.h | 80 IDirect3DTexture9 *mTexture; 102 IDirect3DCubeTexture9 *mTexture;
|
TextureStorage11.h | 63 ID3D11Texture2D *mTexture;
|
/frameworks/base/libs/hwui/ |
Image.h | 49 return mTexture; 60 GLuint mTexture;
|
AssetAtlas.h | 109 AssetAtlas(): mTexture(NULL), mImage(NULL), mGenerationId(0), 140 return mTexture ? mTexture->width : 0; 148 return mTexture ? mTexture->height : 0; 156 return mTexture ? mTexture->id : 0; 181 Texture* mTexture;
|
Texture.h | 118 AutoTexture(const Texture* texture): mTexture(texture) { } 120 if (mTexture && mTexture->cleanup) { 121 mTexture->deleteTexture(); 122 delete mTexture; 127 const Texture* mTexture;
|
SkiaShader.h | 152 Texture* mTexture;
|
/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();
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Description.h | 46 Texture mTexture;
|
/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; 30 mTexture = new RawTexture(w, h, true); 42 return mTexture; 53 canvas.beginRenderTarget(mTexture); 57 mTexture = null; 60 mTexture = null;
|
/external/chromium_org/third_party/angle/src/libEGL/ |
Surface.h | 104 gl::Texture2D *mTexture;
|
/frameworks/base/core/java/android/view/ |
GLES20TextureLayer.java | 30 private int mTexture; 38 mTexture = layerInfo[0]; 47 return mLayer != 0 && mTexture != 0; 76 mSurface = new SurfaceTexture(mTexture); 86 mSurface.attachToGLContext(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;
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/ |
BackingStore.java | 583 private TextureSource mTexture = null; 588 mTexture = TextureSource.newTexture(); 606 mTexture.allocateWithPixels(pixels, mDimensions[0], mDimensions[1]); 609 mTexture.allocateWithBitmapPixels(bitmap); 629 mTexture.allocateWithPixels(pixels, mDimensions[0], mDimensions[1]); 666 if (mTexture.isAllocated()) { 667 mTexture.release(); 677 if (!mTexture.isAllocated()) { 678 mTexture.allocate(mDimensions[0], mDimensions[1]); 680 return mTexture; [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
ProgramVertexFixedFunction.java | 208 Matrix4f mTexture; 230 mTexture = new Matrix4f(); 287 mTexture.load(m);
|
/frameworks/base/libs/hwui/font/ |
CacheTexture.h | 116 return mTexture; 180 PixelBuffer* mTexture;
|
/frameworks/native/services/surfaceflinger/ |
Layer.h | 364 mutable Texture mTexture;
|