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

1 2

  /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/d3d/d3d11/
RenderTarget11.h 44 ID3D11Resource *mTexture;
  /frameworks/base/libs/hwui/
Image.h 49 return mTexture;
60 GLuint mTexture;
AssetAtlas.h 109 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;
Texture.h 124 AutoTexture(const Texture* texture): mTexture(texture) { }
126 if (mTexture && mTexture->cleanup) {
127 mTexture->deleteTexture();
128 delete mTexture;
133 const 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();
  /external/chromium_org/third_party/angle/samples/angle/simple_texture_2d/
SimpleTexture2D.cpp 67 mTexture = CreateSimpleTexture2D();
77 glDeleteTextures(1, &mTexture);
114 glBindTexture(GL_TEXTURE_2D, mTexture);
134 GLuint mTexture;
  /external/chromium_org/third_party/angle/samples/angle/simple_texture_cubemap/
SimpleTextureCubemap.cpp 69 mTexture = CreateSimpleTextureCubemap();
84 glDeleteTextures(1, &mTexture);
108 glBindTexture(GL_TEXTURE_CUBE_MAP, mTexture);
128 GLuint mTexture;
  /external/chromium_org/third_party/angle/samples/angle/texture_wrap/
TextureWrap.cpp 72 mTexture = CreateMipMappedTexture2D();
153 GLuint mTexture;
  /external/chromium_org/third_party/angle/src/libGLESv2/
FramebufferAttachment.h 105 BindingPointer<Texture> mTexture;
Texture.h 82 rx::TextureImpl *getImplementation() { return mTexture; }
83 const rx::TextureImpl *getImplementation() const { return mTexture; }
90 rx::TextureImpl *mTexture;
  /external/chromium_org/third_party/angle/src/libGLESv2/renderer/d3d/d3d9/
TextureStorage9.h 77 IDirect3DTexture9 *mTexture;
99 IDirect3DCubeTexture9 *mTexture;
  /external/chromium_org/third_party/angle/tests/perf_tests/
TexSubImage.h 46 GLuint mTexture;
  /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/samples/angle/multiple_draw_buffers/
MultipleDrawBuffers.cpp 73 mTexture = CreateSimpleTexture2D();
103 glDeleteTextures(1, &mTexture);
155 glBindTexture(GL_TEXTURE_2D, mTexture);
198 GLuint mTexture;
  /external/chromium_org/third_party/angle/src/libEGL/
Surface.h 109 gl::Texture2D *mTexture;
  /external/chromium_org/third_party/angle/tests/angle_tests/
ReadPixelsTest.cpp 53 glGenTextures(1, &mTexture);
54 glBindTexture(GL_TEXTURE_2D, mTexture);
59 glFramebufferTexture2D(GL_FRAMEBUFFER, GL_COLOR_ATTACHMENT0, GL_TEXTURE_2D, mTexture, 0);
76 glDeleteTextures(1, &mTexture);
82 GLuint mTexture;
248 glBindTexture(GL_TEXTURE_2D, mTexture);
SwizzleTest.cpp 91 glDeleteTextures(1, &mTexture);
99 glGenTextures(1, &mTexture);
100 glBindTexture(GL_TEXTURE_2D, mTexture);
110 glGenTextures(1, &mTexture);
111 glBindTexture(GL_TEXTURE_2D, mTexture);
135 glBindTexture(GL_TEXTURE_2D, mTexture);
172 GLuint 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);
  /external/replicaisland/src/com/replica/replicaisland/
ScrollerComponent.java 32 private Texture mTexture;
66 mTexture = null;
85 mTexture = texture;
99 background.setTexture(mTexture);
  /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...]

Completed in 260 milliseconds

1 2