Searched defs:mTexture (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/libs/hwui/
H A DImage.h49 return mTexture;
60 GLuint mTexture; member in class:android::uirenderer::Image
H A DAssetAtlas.h109 AssetAtlas(): mTexture(NULL), mImage(NULL),
140 return mTexture ? mTexture->width : 0;
148 return mTexture ? mTexture->height : 0;
156 return mTexture ? mTexture->id : 0;
175 Texture* mTexture; member in class:android::uirenderer::AssetAtlas
H A DTexture.h124 AutoTexture(const Texture* texture): mTexture(texture) { }
126 if (mTexture && mTexture->cleanup) {
127 mTexture->deleteTexture();
128 delete mTexture;
133 const Texture* mTexture; member in class:android::uirenderer::AutoTexture
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DTextureParam.java37 TextureBase mTexture; field in class:TextureParam
49 mTexture = t;
53 return mTexture;
58 if (mTexture != null) {
59 mData.texture = mTexture.getRsData(false).getAllocation();
H A DSceneManager.java79 private FragmentShader mTexture; field in class:SceneManager
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/tests/HwAccelerationTest/src/com/android/test/hwui/
H A DThinPatchesActivity.java48 private Bitmap mTexture; field in class:ThinPatchesActivity.PatchView
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
[all...]
H A DFramebufferBlendActivity.java48 private Bitmap mTexture; field in class:FramebufferBlendActivity.BlendView
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);
H A DShadersActivity.java54 private Bitmap mTexture; field in class:ShadersActivity.ShadersView
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);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DDescription.h46 Texture mTexture; member in class:android::Description
/frameworks/base/rs/java/android/renderscript/
H A DProgramVertexFixedFunction.java204 Matrix4f mTexture; field in class:ProgramVertexFixedFunction.Constants
226 mTexture = new Matrix4f();
286 mTexture.load(m);
/frameworks/base/libs/hwui/font/
H A DCacheTexture.h116 return mTexture;
180 PixelBuffer* mTexture; member in class:android::uirenderer::CacheTexture
/frameworks/native/services/surfaceflinger/
H A DLayer.h396 mutable Texture mTexture; member in class:android::Layer
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DBackingStore.java583 private TextureSource mTexture = null; field in class:BackingStore.TextureBacking
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...]

Completed in 3037 milliseconds