Lines Matching refs:mBackground

107         Bitmap mBackground;
165 mBackground != null) {
169 mBackground.recycle();
170 mBackground = null;
195 mBackground = null;
340 if (mBackground == null || surfaceDimensionsChanged) {
342 Log.d(TAG, "Reloading bitmap: mBackground, bgw, bgh, dw, dh = " +
343 mBackground + ", " +
344 ((mBackground == null) ? 0 : mBackground.getWidth()) + ", " +
345 ((mBackground == null) ? 0 : mBackground.getHeight()) + ", " +
350 if (mBackground == null) {
357 if (dw != mBackground.getWidth() || dh != mBackground.getHeight()) {
359 dw + ", " + dh + ", " + mBackground.getWidth() + ", " +
360 mBackground.getHeight());
366 mScale = Math.max(1f, Math.max(dw / (float) mBackground.getWidth(),
367 dh / (float) mBackground.getHeight()));
368 final int availw = dw - (int) (mBackground.getWidth() * mScale);
369 final int availh = dh - (int) (mBackground.getHeight() * mScale);
376 final int availwUnscaled = dw - mBackground.getWidth();
377 final int availhUnscaled = dh - mBackground.getHeight();
416 mBackground = null;
425 mBackground = null;
428 mBackground = mWallpaperManager.getBitmap();
429 mBackgroundWidth = mBackground.getWidth();
430 mBackgroundHeight = mBackground.getHeight();
438 mBackground = null;
459 out.print(prefix); out.print(" mBackground="); out.print(mBackground);
495 final float right = left + mBackground.getWidth() * mScale;
496 final float bottom = top + mBackground.getHeight() * mScale;
504 if (mBackground != null) {
507 c.drawBitmap(mBackground, null, dest, null);
518 final float right = left + mBackground.getWidth() * mScale;
519 final float bottom = top + mBackground.getHeight() * mScale;
527 final int texture = loadTexture(mBackground);