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

12

/frameworks/base/graphics/java/android/graphics/
H A DPixelFormat.java89 info.bytesPerPixel = 4;
93 info.bytesPerPixel = 3;
100 info.bytesPerPixel = 2;
106 info.bytesPerPixel = 1;
111 info.bytesPerPixel = 1;
115 info.bytesPerPixel = 1;
136 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/base/media/jni/
H A Dandroid_media_ImageWriter.cpp836 int bytesPerPixel = 0; local
913 bytesPerPixel = 2;
918 dataSize = buffer->stride * buffer->height * bytesPerPixel;
919 pStride = bytesPerPixel;
929 pStride = bytesPerPixel;
934 bytesPerPixel = 2;
937 dataSize = buffer->stride * buffer->height * bytesPerPixel;
938 pStride = bytesPerPixel;
959 bytesPerPixel = 4;
962 dataSize = buffer->stride * buffer->height * bytesPerPixel;
[all...]
H A Dandroid_media_ImageReader.cpp396 int bytesPerPixel = 0; local
463 bytesPerPixel = 2;
468 dataSize = buffer->stride * buffer->height * bytesPerPixel;
480 bytesPerPixel = 2;
483 dataSize = buffer->stride * buffer->height * bytesPerPixel;
514 bytesPerPixel = 4;
517 dataSize = buffer->stride * buffer->height * bytesPerPixel;
521 bytesPerPixel = 2;
524 dataSize = buffer->stride * buffer->height * bytesPerPixel;
528 bytesPerPixel
[all...]
/frameworks/native/services/surfaceflinger/tests/resize/
H A Dresize.cpp52 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format);
/frameworks/base/libs/hwui/
H A DGradientCache.cpp113 const uint32_t size = texture->width * texture->height * bytesPerPixel();
176 const uint32_t size = texture->width * texture->height * bytesPerPixel();
189 size_t GradientCache::bytesPerPixel() const { function in class:android::uirenderer::GradientCache
236 const GLsizei rowBytes = width * bytesPerPixel();
H A DTextureCache.cpp287 uploadToTexture(resize, GL_ALPHA, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(),
292 uploadToTexture(resize, GL_RGB, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(),
297 uploadToTexture(resize, GL_RGBA, bitmap->rowBytesAsPixels(), bitmap->bytesPerPixel(),
335 uploadToTexture(resize, GL_RGBA, rgbaBitmap.rowBytesAsPixels(), rgbaBitmap.bytesPerPixel(),
H A DGradientCache.h156 size_t bytesPerPixel() const;
H A DLayerRenderer.cpp415 glPixelStorei(GL_PACK_ALIGNMENT, bitmap->bytesPerPixel());
/frameworks/base/cmds/screencap/
H A Dscreencap.cpp226 SkAutoTUnref<SkData> data(SkImageEncoder::EncodeData(info, base, s*bytesPerPixel(f),
238 size_t Bpp = bytesPerPixel(f);
/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.cpp159 ssize_t bytesCount = buffer.stride * bytesPerPixel(buffer.format);
H A Dandroid_hardware_camera2_DngCreator.cpp2108 uint32_t bytesPerPixel = SAMPLES_PER_RGB_PIXEL * BYTES_PER_RGB_SAMPLE; local
2111 thumbWidth, context->getThumbnailHeight(), bytesPerPixel,
2112 bytesPerPixel * thumbWidth, /*offset*/0, BYTES_PER_RGB_SAMPLE,
2214 uint32_t bytesPerPixel = SAMPLES_PER_RGB_PIXEL * BYTES_PER_RGB_SAMPLE; local
2217 width, context->getThumbnailHeight(), bytesPerPixel,
2218 bytesPerPixel * width, /*offset*/0, BYTES_PER_RGB_SAMPLE,
H A Dandroid_view_Surface.cpp324 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format);
H A Dandroid_view_SurfaceControl.cpp173 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.cpp140 const int bytesPerPixel = SkColorTypeBytesPerPixel( local
142 const int requestedSize = bytesPerPixel *
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DSceneManager.java87 final int bytesPerPixel = 4;
88 int arraySize = dimension * dimension * bytesPerPixel;
/frameworks/base/libs/input/
H A DSpriteController.cpp212 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format);
/frameworks/native/libs/gui/
H A DSurface.cpp956 const size_t bpp = bytesPerPixel(src->format);
H A DSurfaceComposerClient.cpp794 return mBuffer.stride * mBuffer.height * bytesPerPixel(mBuffer.format);

Completed in 440 milliseconds

12