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

  /packages/apps/Camera/src/com/android/camera/
CameraScreenNail.java 143 return mEnableAspectRatioClamping ? mRenderHeight : getTextureHeight();
150 private int getTextureHeight() {
188 mUncroppedRenderHeight = getTextureHeight();
194 if (getTextureWidth() > getTextureHeight()) {
195 aspectRatio = (float) getTextureWidth() / (float) getTextureHeight();
197 aspectRatio = (float) getTextureHeight() / (float) getTextureWidth();
221 mAnimTexture = new RawTexture(getTextureWidth(), getTextureHeight(), true);
402 mAnimTexture = new RawTexture(getTextureWidth(), getTextureHeight(), true);
  /packages/apps/Gallery2/src/com/android/camera/
CameraScreenNail.java 155 return mEnableAspectRatioClamping ? mRenderHeight : getTextureHeight();
162 private int getTextureHeight() {
200 mUncroppedRenderHeight = getTextureHeight();
206 if (getTextureWidth() > getTextureHeight()) {
207 aspectRatio = (float) getTextureWidth() / (float) getTextureHeight();
209 aspectRatio = (float) getTextureHeight() / (float) getTextureWidth();
233 mAnimTexture = new RawTexture(getTextureWidth(), getTextureHeight(), true);
414 canvas, mAnimTexture, getTextureWidth(), getTextureHeight());
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
BasicTexture.java 113 public int getTextureHeight() {
GLES11Canvas.java 347 1.0f / texture.getTextureHeight(),
349 (texture.getHeight() - 1.0f) / texture.getTextureHeight());
353 (float) texture.getHeight() / texture.getTextureHeight());
427 int texHeight = texture.getTextureHeight();
    [all...]
UploadedTexture.java 220 int texHeight = getTextureHeight();
GLES20Canvas.java 647 int texHeight = texture.getTextureHeight();
    [all...]
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/glrenderer/
TextureTest.java 80 assertEquals(1, texture.getTextureHeight());
85 assertEquals(8, texture.getTextureHeight());
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 657 // We override getTextureWidth() and getTextureHeight() here, so the
667 public int getTextureHeight() {
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageView.java 700 // We override getTextureWidth() and getTextureHeight() here, so the
710 public int getTextureHeight() {

Completed in 210 milliseconds