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

  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLCanvas.java 95 public abstract void drawTexture(
102 public abstract void drawTexture(BasicTexture texture, RectF source, RectF target);
105 public abstract void drawTexture(BasicTexture texture, float[] mTextureTransform,
BasicTexture.java 138 canvas.drawTexture(this, x, y, getWidth(), getHeight());
143 canvas.drawTexture(this, x, y, w, h);
GLES11Canvas.java 372 public void drawTexture(
374 drawTexture(texture, x, y, width, height, mAlpha);
377 private void drawTexture(BasicTexture texture,
389 public void drawTexture(BasicTexture texture, RectF source, RectF target) {
408 public void drawTexture(BasicTexture texture, float[] mTextureTransform,
518 drawTexture(from, source, target);
551 drawTexture(from, x, y, width, height, alpha);
    [all...]
TiledTexture.java 301 canvas.drawTexture(t, mSrcRect, mDestRect);
325 canvas.drawTexture(t, src, dest);
GLES20Canvas.java 582 public void drawTexture(BasicTexture texture, int x, int y, int width, int height) {
607 public void drawTexture(BasicTexture texture, RectF source, RectF target) {
619 public void drawTexture(BasicTexture texture, float[] textureTransform, int x, int y, int w,
776 drawTexture(texture, source, target);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
BitmapScreenNail.java 59 canvas.drawTexture(mBitmapTexture, source, dest);
PhotoFallbackEffect.java 117 canvas.drawTexture(entry.texture, mSource, mTarget);
125 canvas.drawTexture(entry.texture, mSource, mTarget);
130 canvas.drawTexture(entry.texture, mSource, mTarget);
137 canvas.drawTexture(entry.texture, mSource, mTarget);
145 canvas.drawTexture(entry.texture, mSource, mTarget);
150 canvas.drawTexture(entry.texture, mSource, mTarget);
SurfaceTextureScreenNail.java 122 canvas.drawTexture(mExtTexture, mTransform, x, y, width, height);
TileImageView.java 628 canvas.drawTexture(tile, source, target);
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
GLCanvasMock.java 33 // drawTexture;
60 public void drawTexture(
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/ui/
GLCanvasStub.java 82 public void drawTexture(
87 public void drawTexture(BasicTexture texture,
90 public void drawTexture(BasicTexture texture, RectF source, RectF target) {}
92 public void drawTexture(BasicTexture texture, float[] mTextureTransform,
  /external/webkit/Source/WebCore/platform/graphics/texmap/
TextureMapper.h 99 virtual void drawTexture(const BitmapTexture& texture, const IntRect& target, const TransformationMatrix& matrix = TransformationMatrix(), float opacity = 1.0f, const BitmapTexture* maskTexture = 0) = 0;
101 // makes a surface the target for the following drawTexture calls.
106 drawTexture(texture, IntRect(0, 0, texture.contentSize().width(), texture.contentSize().height()), matrix, opacity, 0);
TextureMapperNode.cpp 510 options.textureMapper->drawTexture(*m_texture.get(), replicaRect(), m_transforms.replica,
516 options.textureMapper->drawTexture(*m_texture.get(), rect, transform, opacity, options.isSurface ? 0 : maskTexture.get());
541 options.textureMapper->drawTexture(texture, replicaRect(), m_transforms.replica, replica->m_state.opacity, replicaMaskTexture ? replicaMaskTexture.get() : maskTexture.get());
542 options.textureMapper->drawTexture(texture, IntRect(IntPoint(0, 0), options.surface->size()), TransformationMatrix(), 1.0f, maskTexture.get());
545 options.textureMapper->drawTexture(*m_replicaSurface.get(), IntRect(IntPoint(0, 0), options.surface->size()), TransformationMatrix(), options.opacity, 0);
568 options.textureMapper->drawTexture(texture,
  /external/webkit/Source/WebCore/platform/graphics/opengl/
TextureMapperGL.h 41 virtual void drawTexture(const BitmapTexture& texture, const IntRect&, const TransformationMatrix& transform, float opacity, const BitmapTexture* maskTexture);
TextureMapperGL.cpp 363 void TextureMapperGL::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& modelViewMatrix, float opacity, const BitmapTexture* maskTexture)
  /external/webkit/Source/WebCore/platform/graphics/qt/
TextureMapperQt.h 56 virtual void drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture);
TextureMapperQt.cpp 135 void TextureMapperQt::drawTexture(const BitmapTexture& texture, const IntRect& targetRect, const TransformationMatrix& matrix, float opacity, const BitmapTexture* maskTexture)
GraphicsContext3DQt.cpp 545 viewportGLWidget->drawTexture(rect, m_texture);
    [all...]
  /frameworks/native/libs/gui/tests/
SurfaceTexture_test.cpp 498 void drawTexture() {
499 mTextureRenderer->drawTexture();
545 // drawTexture draws the GLConsumer over the entire GL viewport.
546 void drawTexture() {
815 drawTexture();
861 drawTexture();
921 drawTexture();
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraScreenNail.java 417 canvas.drawTexture(mExtTexture, mTextureTransformMatrix, 0, 0, width, height);
  /packages/apps/Gallery2/src/com/android/camera/
CameraScreenNail.java 425 canvas.drawTexture(mExtTexture, mTextureTransformMatrix, 0, 0, width, height);
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 585 canvas.drawTexture(tile, source, target);

Completed in 624 milliseconds