Searched refs:hwBitmap (Results 1 – 3 of 3) sorted by relevance
/cts/tests/tests/uirendering/src/android/uirendering/cts/testclasses/ |
D | CanvasTests.java | 281 Bitmap hwBitmap = getImmutableBitmap().copy(Bitmap.Config.HARDWARE, false); in testDrawHwBitmap_inSwCanvas() local 283 new Canvas(getMutableBitmap()).drawBitmap(hwBitmap, 0, 0, null); in testDrawHwBitmap_inSwCanvas() 288 Bitmap hwBitmap = getImmutableBitmap().copy(Bitmap.Config.HARDWARE, false); in testDrawHwBitmap_inPictureCanvas_inSwCanvas() local 291 pictureCanvas.drawBitmap(hwBitmap, 0, 0, null); in testDrawHwBitmap_inPictureCanvas_inSwCanvas() 298 Bitmap hwBitmap = getImmutableBitmap().copy(Bitmap.Config.HARDWARE, false); in testDrawHwBitmap_inPictureCanvas_inPictureCanvas_inSwCanvas() local 301 pictureCanvas.drawBitmap(hwBitmap, 0, 0, null); in testDrawHwBitmap_inPictureCanvas_inPictureCanvas_inSwCanvas() 312 Bitmap hwBitmap = getImmutableBitmap().copy(Bitmap.Config.HARDWARE, false); in testHwBitmapShaderInSwCanvas1() local 313 BitmapShader bitmapShader = new BitmapShader(hwBitmap, Shader.TileMode.REPEAT, in testHwBitmapShaderInSwCanvas1() 325 Bitmap hwBitmap = getImmutableBitmap().copy(Bitmap.Config.HARDWARE, false); in testHwBitmapShaderInSwCanvas2() local 326 BitmapShader bitmapShader = new BitmapShader(hwBitmap, Shader.TileMode.REPEAT, in testHwBitmapShaderInSwCanvas2()
|
D | HardwareBitmapTests.java | 299 Bitmap hwBitmap = bitmap.copy(Bitmap.Config.HARDWARE, false); in testHardwareExtractAlpha() local 300 Bitmap alphaBitmap = hwBitmap.extractAlpha(); in testHardwareExtractAlpha()
|
/cts/tests/tests/graphics/src/android/graphics/cts/ |
D | BitmapTest.java | 2176 Bitmap hwBitmap = BitmapFactory.decodeResource(mRes, R.drawable.start, HARDWARE_OPTIONS); in testHardwareCopyPixelsFromBuffer() local 2177 hwBitmap.copyPixelsFromBuffer(intBuf1); in testHardwareCopyPixelsFromBuffer() 2193 Bitmap hwBitmap = bitmap.copy(Config.HARDWARE, false); in testCopyHWBitmapInStrictMode() local 2194 hwBitmap.copy(Config.ARGB_8888, false); in testCopyHWBitmapInStrictMode() 2202 Bitmap hwBitmap = bitmap.copy(Config.HARDWARE, false); in testCreateScaledFromHWInStrictMode() local 2203 Bitmap.createScaledBitmap(hwBitmap, 200, 200, false); in testCreateScaledFromHWInStrictMode() 2211 Bitmap hwBitmap = bitmap.copy(Config.HARDWARE, false); in testExtractAlphaFromHWInStrictMode() local 2212 hwBitmap.extractAlpha(); in testExtractAlphaFromHWInStrictMode() 2228 Bitmap hwBitmap = mBitmap.copy(Config.HARDWARE, false); in testParcelHWInStrictMode() local 2229 hwBitmap.writeToParcel(Parcel.obtain(), 0); in testParcelHWInStrictMode() [all …]
|