Home
last modified time | relevance | path

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

/development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/
DMainActivity.java42 private Allocation[] mOutAllocations; field in MainActivity
106 mOutAllocations = new Allocation[NUM_BITMAPS]; in createScript()
108 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); in createScript()
137 mScript.forEach_saturation(mInAllocation, mOutAllocations[index]); in doInBackground()
142 mOutAllocations[index].copyTo(mBitmapsOut[index]); in doInBackground()
/development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
DMainActivity.java45 private Allocation[] mOutAllocations; field in MainActivity
157 mOutAllocations = new Allocation[NUM_BITMAPS]; in createScript()
159 mOutAllocations[i] = Allocation.createFromBitmap(mRS, mBitmapsOut[i]); in createScript()
289 performFilter(mInAllocation, mOutAllocations[index], mBitmapsOut[index], values[0]); in doInBackground()