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

  /packages/apps/WallpaperPicker/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 142 int bWidth = bitmap.getWidth();
147 Utils.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
153 if (bWidth == texWidth && bHeight == texHeight) {
164 if (bWidth < texWidth) {
166 canvas.texSubImage2D(this, bWidth, 0, line, format, type);
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 215 int bWidth = bitmap.getWidth();
217 int width = bWidth + mBorder * 2;
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
249 if (mBorder + bWidth < texWidth) {
251 canvas.texSubImage2D(this, mBorder + bWidth, 0, line, format, type);
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
UploadedTexture.java 215 int bWidth = bitmap.getWidth();
217 int width = bWidth + mBorder * 2;
222 Assert.assertTrue(bWidth <= texWidth && bHeight <= texHeight);
228 if (bWidth == texWidth && bHeight == texHeight) {
249 if (mBorder + bWidth < texWidth) {
251 canvas.texSubImage2D(this, mBorder + bWidth, 0, line, format, type);
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/
NinePatchTest.java 64 int bWidth = 20;
65 tp.ninePatch.setLeftWidth(bWidth);
66 tp.ninePatch.setRightWidth(bWidth);
67 tp.ninePatch.setTopHeight(bWidth);
68 tp.ninePatch.setBottomHeight(bWidth);
  /external/freetype/src/raster/
ftraster.c 493 UShort bWidth; /* target bitmap width */
    [all...]
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/raster/
ftraster.c 489 UShort bWidth; /* target bitmap width */
    [all...]
  /external/pdfium/third_party/freetype/src/raster/
ftraster.c 489 UShort bWidth; /* target bitmap width */
    [all...]
  /external/skia/src/device/xps/
SkXPSDevice.cpp 703 const SkScalar bWidth = SkIntToScalar(bitmap.width());
715 const SkRect bitmapPoints = SkRect::MakeLTRB(0, 0, bWidth, bHeight);
739 SkRect rightArea = SkRect::MakeLTRB(bWidth, 0, BIG, bHeight);
751 SkRect topArea = SkRect::MakeLTRB(0, -BIG, bWidth, 0);
760 SkRect bottomArea = SkRect::MakeLTRB(0, bHeight, bWidth, BIG);
781 const SkRect trArea = SkRect::MakeLTRB(bWidth, -BIG, BIG, 0);
786 const SkRect brArea = SkRect::MakeLTRB(bWidth, bHeight, BIG, BIG);
    [all...]

Completed in 1630 milliseconds