Home
last modified time | relevance | path

Searched refs:mCurrentBitmap (Results 1 – 3 of 3) sorted by relevance

/development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
DBitmapAllocation.java44 Bitmap mCurrentBitmap = null; field in BitmapAllocation
63 mCurrentBitmap = Bitmap.createBitmap(mBitmapOptions.outWidth, in onCreate()
66 mBitmapOptions.inBitmap = mCurrentBitmap; in onCreate()
69 imageview.setImageBitmap(mCurrentBitmap); in onCreate()
81 bitmapOptions.inBitmap = mCurrentBitmap; in onCreate()
84 mCurrentBitmap = BitmapFactory.decodeResource(getResources(), in onCreate()
86 imageview.setImageBitmap(mCurrentBitmap); in onCreate()
/development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/
DMainActivity.java35 private int mCurrentBitmap = 0; field in MainActivity
62 mImageView.setImageBitmap(mBitmapsOut[mCurrentBitmap]); in onCreate()
63 mCurrentBitmap += (mCurrentBitmap + 1) % NUM_BITMAPS; in onCreate()
127 index = mCurrentBitmap; in doInBackground()
143 mCurrentBitmap = (mCurrentBitmap + 1) % NUM_BITMAPS; in doInBackground()
/development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
DMainActivity.java38 private int mCurrentBitmap = 0; field in MainActivity
78 mImageView.setImageBitmap(mBitmapsOut[mCurrentBitmap]); in onCreate()
79 mCurrentBitmap += (mCurrentBitmap + 1) % NUM_BITMAPS; in onCreate()
287 index = mCurrentBitmap; in doInBackground()
290 mCurrentBitmap = (mCurrentBitmap + 1) % NUM_BITMAPS; in doInBackground()