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

  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 143 int bHeight = bitmap.getHeight();
147 Utils.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
153 if (bWidth == texWidth && bHeight == texHeight) {
170 if (bHeight < texHeight) {
172 canvas.texSubImage2D(this, 0, bHeight, line, format, type);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 216 int bHeight = bitmap.getHeight();
218 int height = bHeight + mBorder * 2;
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
255 if (mBorder + bHeight < texHeight) {
257 canvas.texSubImage2D(this, 0, mBorder + bHeight, line, format, type);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 216 int bHeight = bitmap.getHeight();
218 int height = bHeight + mBorder * 2;
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
255 if (mBorder + bHeight < texHeight) {
257 canvas.texSubImage2D(this, 0, mBorder + bHeight, line, format, type);
  /external/skia/src/device/xps/
SkXPSDevice.cpp 704 const SkScalar bHeight = SkIntToScalar(bitmap.height());
715 const SkRect bitmapPoints = SkRect::MakeLTRB(0, 0, bWidth, bHeight);
730 SkRect leftArea = SkRect::MakeLTRB(-BIG, 0, 0, bHeight);
739 SkRect rightArea = SkRect::MakeLTRB(bWidth, 0, BIG, bHeight);
760 SkRect bottomArea = SkRect::MakeLTRB(0, bHeight, bWidth, BIG);
786 const SkRect brArea = SkRect::MakeLTRB(bWidth, bHeight, BIG, BIG);
790 const SkRect blArea = SkRect::MakeLTRB(-BIG, bHeight, 0, BIG);
    [all...]

Completed in 59 milliseconds