HomeSort by relevance Sort by last modified time
    Searched refs:sig_bit (Results 1 - 25 of 29) sorted by null

1 2

  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libpng.cpp 506 png_color_8p sig_bit; local
507 if (this->getDitherImage() && png_get_sBIT(png_ptr, info_ptr, &sig_bit)) {
509 SkDebugf("----- sBIT %d %d %d %d\n", sig_bit->red, sig_bit->green,
510 sig_bit->blue, sig_bit->alpha);
513 if (pos_le(sig_bit->red, SK_R16_BITS) &&
514 pos_le(sig_bit->green, SK_G16_BITS) &&
515 pos_le(sig_bit->blue, SK_B16_BITS)) {
1132 png_color_8 sig_bit; local
    [all...]
  /external/skia/src/images/
SkImageDecoder_libpng.cpp 505 png_color_8p sig_bit; local
506 if (this->getDitherImage() && png_get_sBIT(png_ptr, info_ptr, &sig_bit)) {
508 SkDebugf("----- sBIT %d %d %d %d\n", sig_bit->red, sig_bit->green,
509 sig_bit->blue, sig_bit->alpha);
512 if (pos_le(sig_bit->red, SK_R16_BITS) &&
513 pos_le(sig_bit->green, SK_G16_BITS) &&
514 pos_le(sig_bit->blue, SK_B16_BITS)) {
1131 png_color_8 sig_bit; local
    [all...]
  /external/libpng/
example.c 655 png_color_8 sig_bit;
657 sig_bit.gray = true_bit_depth;
659 sig_bit.red = true_red_bit_depth;
660 sig_bit.green = true_green_bit_depth;
661 sig_bit.blue = true_blue_bit_depth;
663 sig_bit.alpha = true_alpha_bit_depth;
664 png_set_sBIT(png_ptr, info_ptr, &sig_bit);
726 png_set_shift(png_ptr, &sig_bit);