Searched refs:imgArray (Results 1 – 1 of 1) sorted by relevance
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
D | ImageReaderSubPane.java | 350 int[] imgArray = new int[w * h]; in updateImage() local 368 imgArray[j] = Color.rgb(yval, uval, vval); in updateImage() 373 imgBitmap = Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in updateImage() 384 int[] imgArray = new int[w * h]; in updateImage() local 398 imgArray[j] = Color.rgb(r,g,b); in updateImage() 401 imgBitmap = Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in updateImage() 435 int[] imgArray = new int[w * h]; in convertDepthToFalseColor() local 447 imgArray[j] = Color.rgb(r, g, 0); in convertDepthToFalseColor() 450 return Bitmap.createBitmap(imgArray, w, h, Bitmap.Config.ARGB_8888); in convertDepthToFalseColor()
|