Home | History | Annotate | Download | only in glrenderer

Lines Matching refs:bitmap

19 import android.graphics.Bitmap;
23 // BitmapTexture is a texture whose content is specified by a fixed Bitmap.
25 // The texture does not own the Bitmap. The user should make sure the Bitmap
27 // does not free the Bitmap.
29 protected Bitmap mContentBitmap;
31 public BitmapTexture(Bitmap bitmap) {
32 this(bitmap, false);
35 public BitmapTexture(Bitmap bitmap, boolean hasBorder) {
37 Assert.assertTrue(bitmap != null && !bitmap.isRecycled());
38 mContentBitmap = bitmap;
42 protected void onFreeBitmap(Bitmap bitmap) {
47 protected Bitmap onGetBitmap() {
51 public Bitmap getBitmap() {