HomeSort by relevance Sort by last modified time
    Searched defs:bitsPerPixel (Results 1 - 25 of 68) sorted by null

1 2 3

  /frameworks/native/libs/ui/
PixelFormat.cpp 42 uint32_t bitsPerPixel(PixelFormat format) {
  /external/skia/src/codec/
SkBmpCodec.h 42 uint16_t bitsPerPixel, SkCodec::SkScanlineOrder rowOrder);
83 uint16_t bitsPerPixel() const { return fBitsPerPixel; }
SkBmpCodec.cpp 217 uint16_t bitsPerPixel;
244 bitsPerPixel = get_short(iBuffer.get(), 10);
263 bitsPerPixel = get_short(iBuffer.get(), 6);
307 if (16 == bitsPerPixel) {
315 if (bitsPerPixel != 8) {
317 bitsPerPixel = 8;
322 if (bitsPerPixel != 4) {
324 bitsPerPixel = 4;
393 if (24 == bitsPerPixel) {
440 switch (bitsPerPixel) {
    [all...]
SkSwizzler.cpp     [all...]
SkPngCodec.cpp 452 const int bitsPerPixel = this->getEncodedInfo().bitsPerPixel();
456 const size_t bytesPerPixel = (bitsPerPixel > 32) ? bitsPerPixel / 8 : 4;
    [all...]
  /external/skia/tools/viewer/sk_app/unix/
RasterWindowContext_unix.cpp 66 int bitsPerPixel = pm.info().bytesPerPixel() * 8;
74 image.bitmap_unit = bitsPerPixel;
76 image.bitmap_pad = bitsPerPixel;
79 image.bits_per_pixel = bitsPerPixel;
  /external/deqp/framework/delibs/deimage/
deTarga.c 44 int bitsPerPixel;
61 bitsPerPixel = tgaHeader[16];
62 stride = width * bitsPerPixel / 8;
70 DE_TEST_ASSERT(bitsPerPixel == 24 || bitsPerPixel == 32);
71 format = (bitsPerPixel == 32) ? DE_IMAGEFORMAT_ARGB8888 : DE_IMAGEFORMAT_XRGB8888;
89 if (bitsPerPixel == 24)
106 DE_ASSERT(bitsPerPixel == 32);
  /external/skia/include/codec/
SkEncodedInfo.h 161 uint8_t bitsPerPixel() const {
  /frameworks/base/graphics/java/android/graphics/
PixelFormat.java 101 public int bitsPerPixel;
108 info.bitsPerPixel = 32;
112 info.bitsPerPixel = 24;
119 info.bitsPerPixel = 16;
125 info.bitsPerPixel = 8;
130 info.bitsPerPixel = 16;
134 info.bitsPerPixel = 12;
138 info.bitsPerPixel = 64;
  /external/libvncserver/libvncserver/
scale.c 144 int bitsPerPixel, bytesPerPixel, bytesPerLine, areaX, areaY, area2;
161 bitsPerPixel = screen->bitsPerPixel;
162 bytesPerPixel = bitsPerPixel / 8;
299 allocSize = pad4(width * (ptr->bitsPerPixel/8)); /* per protocol, width<2**16 and bpp<256 */
309 ptr->paddedWidthInBytes = (ptr->bitsPerPixel/8)*ptr->width;
  /external/skia/src/views/unix/
SkOSWindow_Unix.cpp 411 int bitsPerPixel = bitmap.bytesPerPixel() * 8;
417 image.bitmap_unit = bitsPerPixel;
419 image.bitmap_pad = bitsPerPixel;
422 image.bits_per_pixel = bitsPerPixel;
  /system/core/libpixelflinger/include/pixelflinger/
format.h 106 uint8_t bitsPerPixel;
  /external/mesa3d/src/gallium/state_trackers/glx/xlib/
xm_api.c 219 int bitsPerPixel;
230 bitsPerPixel = img->bits_per_pixel;
235 return bitsPerPixel;
328 && v->BitsPerPixel == 32) {
340 && v->BitsPerPixel == 32) {
352 && v->BitsPerPixel == 32) {
365 && v->BitsPerPixel == 16) {
563 v->BitsPerPixel = bits_per_pixel(v);
564 assert(v->BitsPerPixel > 0);
582 if (v->BitsPerPixel == 32)
    [all...]
  /external/mesa3d/src/mesa/drivers/x11/
xm_api.c 170 int bitsPerPixel;
181 bitsPerPixel = img->bits_per_pixel;
186 return bitsPerPixel;
513 && v->BitsPerPixel==32
523 if (v->BitsPerPixel==32) {
530 else if (v->BitsPerPixel == 24) {
538 && v->BitsPerPixel==16
568 v->BitsPerPixel = bits_per_pixel(v);
569 assert(v->BitsPerPixel > 0);
599 printf("X/Mesa bits per pixel = %d\n", v->BitsPerPixel);
    [all...]
  /frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
mp4lib_int.h 103 uint bitsPerPixel;
  /cts/tests/camera/src/android/hardware/cts/
CameraTest.java 240 int bitsPerPixel = ImageFormat.getBitsPerPixel(format);
242 format, bitsPerPixel) != data.length) {
244 + ". height=" + size.height + ". bitsPerPixel=" + bitsPerPixel);
    [all...]
  /external/libvncserver/rfb/
rfb.h 245 int bitsPerPixel;
    [all...]
rfbproto.h 156 uint8_t bitsPerPixel; /* 8,16,32 only */
    [all...]
  /external/mesa3d/src/gallium/drivers/svga/include/
svga_reg.h 307 uint32 bitsPerPixel : 8;
    [all...]
  /external/libvncserver/webclients/java-applet/
VncViewer.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/
Xproto.h 303 CARD8 bitsPerPixel;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/X11/
Xproto.h 303 CARD8 bitsPerPixel;
    [all...]
  /external/libvncserver/webclients/java-applet/ssl/
SignedUltraViewerSSL.jar 
SignedVncViewer.jar 
UltraViewerSSL.jar 

Completed in 789 milliseconds

1 2 3