Home
last modified time | relevance | path

Searched refs:mBitmapsOut (Results 1 – 2 of 2) sorted by relevance

/developers/samples/android/renderScript/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
DMainActivity.java38 private Bitmap[] mBitmapsOut; field in MainActivity
54 mBitmapsOut = new Bitmap[NUM_BITMAPS]; in onCreate()
56 mBitmapsOut[i] = Bitmap.createBitmap(mBitmapIn.getWidth(), in onCreate()
61 mImageView.setImageBitmap(mBitmapsOut[mCurrentBitmap]); in onCreate()
104 mOutAllocations[i] = Allocation.createFromBitmap(rs, mBitmapsOut[i]); in createScript()
133 mOutAllocations[index].copyTo(mBitmapsOut[index]); in doInBackground()
142 mImageView.setImageBitmap(mBitmapsOut[result]); in updateView()
/developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
DMainActivity.java47 private Bitmap[] mBitmapsOut; field in MainActivity
74 mBitmapsOut = new Bitmap[NUM_BITMAPS]; in onCreate()
76 mBitmapsOut[i] = Bitmap.createBitmap(mBitmapIn.getWidth(), in onCreate()
81 mImageView.setImageBitmap(mBitmapsOut[mCurrentBitmap]); in onCreate()
155 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); in createScript()
273 performFilter(mInAllocation, mOutAllocations[index], mBitmapsOut[index], values[0]); in doInBackground()
282 mImageView.setImageBitmap(mBitmapsOut[result]); in updateView()