Searched refs:orig_data (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/ |
D | RGBZ.java | 163 int[] orig_data = new int[w*h]; in setAlphaChannelFromBitmap() local 166 orig.getPixels(orig_data, 0, w, 0, 0, w, h); in setAlphaChannelFromBitmap() 168 for (int i = 0; i < orig_data.length; i++) { in setAlphaChannelFromBitmap() 169 int v = orig_data[i] & 0x00FFFFFF; in setAlphaChannelFromBitmap() 172 orig_data[i] = v; in setAlphaChannelFromBitmap() 174 dest.setPixels(orig_data, 0, w, 0, 0, w, h); in setAlphaChannelFromBitmap()
|