Home
last modified time | relevance | path

Searched refs:mPixels (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DBitmapMutateActivity.java62 private final int[] mPixels; field in BitmapMutateActivity.BitmapsView
74 mPixels = new int[mBitmap1.getWidth() * mBitmap1.getHeight()]; in BitmapsView()
98 mPixels[y * width + x] = color; in onDraw()
102 mBitmap1.setPixels(mPixels, 0, width, 0, 0, width, height); in onDraw()
107 canvas.drawBitmap(mPixels, 0, width, 0.0f, 0.0f, width, height, false, mBitmapPaint); in onDraw()
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/performance/
DThroughput.java28 private final int mPixels; field in Throughput
34 mPixels = pixels; in Throughput()
55 return (float)(frameTimeInNanos / mPixels); in getNanosPerPixel()
/frameworks/base/core/java/com/android/internal/app/
DSimpleIconFactory.java138 mPixels = new byte[mMaxSize * mMaxSize]; in SimpleIconFactory()
390 private final byte[] mPixels; field in SimpleIconFactory
434 ByteBuffer buffer = ByteBuffer.wrap(mPixels); in getScale()
458 if ((mPixels[index] & 0xFF) > MIN_VISIBLE_ALPHA) { in getScale()
/frameworks/native/services/surfaceflinger/tests/
DTransaction_test.cpp251 expectBufferColor(mOutBuffer, mPixels, rect, color, tolerance); in expectColor()
313 const uint8_t* pixel = mPixels + (4 * (y * mOutBuffer->getStride() + x)); in checkPixel()
329 mOutBuffer->lock(GRALLOC_USAGE_SW_READ_OFTEN, reinterpret_cast<void**>(&mPixels)); in ScreenCapture()
336 uint8_t* mPixels = nullptr; member in android::ScreenCapture