Searched refs:bytesPerPixel (Results 1 - 25 of 26) sorted by relevance

12

/frameworks/base/graphics/java/android/graphics/
H A DPixelFormat.java99 info.bytesPerPixel = 4;
103 info.bytesPerPixel = 3;
110 info.bytesPerPixel = 2;
116 info.bytesPerPixel = 1;
121 info.bytesPerPixel = 1;
125 info.bytesPerPixel = 1;
146 public int bytesPerPixel; field in class:PixelFormat
/frameworks/native/libs/ui/
H A DPixelFormat.cpp23 uint32_t bytesPerPixel(PixelFormat format) { function in namespace:android
H A DGraphicBufferAllocator.cpp122 uint32_t bpp = bytesPerPixel(format);
/frameworks/native/include/ui/
H A DPixelFormat.h67 uint32_t bytesPerPixel(PixelFormat format);
/frameworks/av/media/ndk/
H A DNdkImage.cpp354 int bytesPerPixel = 0; local
405 bytesPerPixel = 2;
408 dataSize = mBuffer->stride * mBuffer->height * bytesPerPixel;
422 bytesPerPixel = 2;
424 dataSize = mBuffer->stride * mBuffer->height * bytesPerPixel;
474 bytesPerPixel = 4;
476 dataSize = mBuffer->stride * mBuffer->height * bytesPerPixel;
480 bytesPerPixel = 2;
482 dataSize = mBuffer->stride * mBuffer->height * bytesPerPixel;
486 bytesPerPixel
[all...]
/frameworks/base/media/jni/
H A Dandroid_media_Utils.cpp662 int bytesPerPixel = 0; local
739 bytesPerPixel = 2;
744 dataSize = buffer->stride * buffer->height * bytesPerPixel;
745 pStride = bytesPerPixel;
768 bytesPerPixel = 2;
771 dataSize = buffer->stride * buffer->height * bytesPerPixel;
772 pStride = bytesPerPixel;
818 bytesPerPixel = 4;
821 dataSize = buffer->stride * buffer->height * bytesPerPixel;
822 pStride = bytesPerPixel;
[all...]
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp180 SkAutoTUnref<SkData> data(SkImageEncoder::EncodeData(info, base, s*bytesPerPixel(f),
192 size_t Bpp = bytesPerPixel(f);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp157 const uint32_t size = info.width * 2 * bytesPerPixel();
170 " width = %" PRIu32 " bytesPerPixel() = %zu",
171 size, texture->objectSize(), info.width, bytesPerPixel());
177 size_t GradientCache::bytesPerPixel() const { function in class:android::uirenderer::GradientCache
224 const GLsizei rowBytes = width * bytesPerPixel();
H A DTexture.cpp29 static int bytesPerPixel(GLint glFormat) { function in namespace:android::uirenderer
93 notifySizeChanged(mWidth * mHeight * bytesPerPixel(mFormat));
170 uploadToTexture(resize, format, type, bitmap.rowBytesAsPixels(), bitmap.bytesPerPixel(),
H A DGradientCache.h152 size_t bytesPerPixel() const;
H A DReadback.cpp91 glPixelStorei(GL_PACK_ALIGNMENT, bitmap->bytesPerPixel());
H A DLayerRenderer.cpp414 glPixelStorei(GL_PACK_ALIGNMENT, bitmap->bytesPerPixel());
/frameworks/native/libs/gui/tests/
H A DCpuConsumer_test.cpp204 const int bytesPerPixel = 4; local
206 bPtr += (y * buf.stride + x) * bytesPerPixel;
258 const int bytesPerPixel = 4; local
270 buf[(y*stride + x)*bytesPerPixel + 0] = r;
271 buf[(y*stride + x)*bytesPerPixel + 1] = g;
272 buf[(y*stride + x)*bytesPerPixel + 2] = b;
273 buf[(y*stride + x)*bytesPerPixel + 3] = 255;
/frameworks/base/services/core/jni/
H A Dcom_android_server_AssetAtlasService.cpp161 glPixelStorei(GL_UNPACK_ALIGNMENT, bitmap.bytesPerPixel());
/frameworks/base/core/jni/
H A Dandroid_view_GraphicBuffer.cpp180 ssize_t bytesCount = buffer->getStride() * bytesPerPixel(buffer->getPixelFormat());
H A Dandroid_view_TextureView.cpp155 ssize_t bytesCount = buffer.stride * bytesPerPixel(buffer.format);
H A Dandroid_hardware_camera2_DngCreator.cpp2167 uint32_t bytesPerPixel = SAMPLES_PER_RGB_PIXEL * BYTES_PER_RGB_SAMPLE; local
2170 thumbWidth, context->getThumbnailHeight(), bytesPerPixel,
2171 bytesPerPixel * thumbWidth, /*offset*/0, BYTES_PER_RGB_SAMPLE,
2273 uint32_t bytesPerPixel = SAMPLES_PER_RGB_PIXEL * BYTES_PER_RGB_SAMPLE; local
2276 width, context->getThumbnailHeight(), bytesPerPixel,
2277 bytesPerPixel * width, /*offset*/0, BYTES_PER_RGB_SAMPLE,
H A Dandroid_view_Surface.cpp328 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format);
H A Dandroid_view_SurfaceControl.cpp181 screenshot->getStride() * android::bytesPerPixel(screenshot->getFormat());
H A Dcom_google_android_gles_jni_EGLImpl.cpp295 pixmap.stride = nativeBitmap.rowBytes() / nativeBitmap.bytesPerPixel();
/frameworks/base/core/jni/android/graphics/
H A DBitmapFactory.cpp147 const int bytesPerPixel = SkColorTypeBytesPerPixel( local
149 const int requestedSize = bytesPerPixel *
H A DBitmap.cpp1336 const size_t size = bm0.width() * bm0.bytesPerPixel();
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/helpers/
H A DCameraTestUtils.java861 int bytesPerPixel = ImageFormat.getBitsPerPixel(format) / 8;
863 if (pixelStride == bytesPerPixel) {
865 length = w * bytesPerPixel;
872 length = (w - 1) * pixelStride + bytesPerPixel;
/frameworks/base/libs/input/
H A DSpriteController.cpp212 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp895 return mBuffer.stride * mBuffer.height * bytesPerPixel(mBuffer.format);

Completed in 530 milliseconds

12