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

1 2

  /external/libpng/contrib/gregbook/
readppm.c 68 int bit_depth, color_type, channels; variable
96 color_type = 2;
99 color_type = 6;
102 color_type = 0;
writepng.c 87 int color_type, interlace_type; local
141 color_type = PNG_COLOR_TYPE_GRAY;
143 color_type = PNG_COLOR_TYPE_RGB;
145 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
155 mainprog_ptr->sample_depth, color_type, interlace_type,
readpng.c 72 int bit_depth, color_type; variable
134 * etc., but want bit_depth and color_type for later [don't care about
137 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
173 * and blue values, regardless of color_type: */
185 } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
226 if (color_type == PNG_COLOR_TYPE_PALETTE)
228 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
234 if (color_type == PNG_COLOR_TYPE_GRAY ||
235 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
readpng2.c 381 int color_type, bit_depth; local
418 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
434 * green and blue values, regardless of color_type: */
443 } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
466 if (color_type == PNG_COLOR_TYPE_PALETTE)
468 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
474 if (color_type == PNG_COLOR_TYPE_GRAY ||
475 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  /external/freetype/src/sfnt/
pngshim.c 194 int bitdepth, color_type, interlace; local
238 &bitdepth, &color_type, &interlace,
247 if ( color_type == PNG_COLOR_TYPE_PALETTE )
251 if ( color_type == PNG_COLOR_TYPE_GRAY )
271 if ( color_type == PNG_COLOR_TYPE_GRAY ||
272 color_type == PNG_COLOR_TYPE_GRAY_ALPHA )
284 &bitdepth, &color_type, &interlace,
288 !( color_type == PNG_COLOR_TYPE_RGB ||
289 color_type == PNG_COLOR_TYPE_RGB_ALPHA ) )
295 switch ( color_type )
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_png.cpp 152 int bit_depth, color_type; local
158 &bit_depth, &color_type, 0, 0, 0 );
160 m_iscolor = color_type == PNG_COLOR_TYPE_RGB ||
161 color_type == PNG_COLOR_TYPE_RGB_ALPHA ||
162 color_type == PNG_COLOR_TYPE_PALETTE;
166 m_color_type = color_type;
  /bootable/recovery/minui/
resources.c 96 int color_type = info_ptr->color_type; local
100 ((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) ||
101 (channels == 4 && color_type == PNG_COLOR_TYPE_RGBA) ||
102 (channels == 1 && (color_type == PNG_COLOR_TYPE_PALETTE ||
103 color_type == PNG_COLOR_TYPE_GRAY))))) {
110 size_t stride = (color_type == PNG_COLOR_TYPE_GRAY ? 1 : 4) * width;
125 ((color_type == PNG_COLOR_TYPE_PALETTE ? GGL_PIXEL_FORMAT_RGBA_8888 : GGL_PIXEL_FORMAT_L_8));
128 if (color_type == PNG_COLOR_TYPE_PALETTE) {
135 if (color_type == PNG_COLOR_TYPE_GRAY)
253 int color_type = info_ptr->color_type; local
    [all...]
  /external/libpng/contrib/pngminus/
png2pnm.c 202 int color_type; local
247 &width, &height, &bit_depth, &color_type,
253 if (color_type == PNG_COLOR_TYPE_PALETTE)
256 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
267 if (color_type == PNG_COLOR_TYPE_GRAY ||
268 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
281 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
294 if (color_type == PNG_COLOR_TYPE_GRAY)
296 else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
298 else if (color_type == PNG_COLOR_TYPE_RGB
    [all...]
pnm2png.c 199 int color_type; local
222 color_type = PNG_COLOR_TYPE_GRAY;
228 color_type = PNG_COLOR_TYPE_GRAY;
249 color_type = PNG_COLOR_TYPE_RGB;
276 if (color_type == PNG_COLOR_TYPE_GRAY)
277 color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
278 if (color_type == PNG_COLOR_TYPE_RGB)
279 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
319 if (color_type == PNG_COLOR_TYPE_GRAY)
321 else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA
    [all...]
  /development/tools/etc1tool/
etc1tool.cpp 195 int bit_depth, color_type; local
197 &color_type, NULL, NULL, NULL);
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 67 png_byte color_type; /* see PNG_COLOR_TYPE_ below (from IHDR) */ member in struct:png_info_def
pngstruct.h 136 png_byte color_type; /* color type of file */ member in struct:png_struct_def
pngrtran.c 955 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
2480 int color_type; local
    [all...]
png.h 748 /* These describe the color_type field in png_info. */
844 png_byte color_type; \/* color type of row *\/ member in struct:png_row_info_struct
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 156 int bit_depth, color_type, interlace_type, compression_type; local
159 png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
175 if (color_type == PNG_COLOR_TYPE_PALETTE ||
176 (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8))
188 if (color_type == PNG_COLOR_TYPE_GRAY ||
189 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 167 int bit_depth, color_type, interlace_type, compression_type; local
170 png_get_IHDR(png_ptr, info_ptr, &w, &h, &bit_depth, &color_type,
191 if (color_type == PNG_COLOR_TYPE_PALETTE ||
192 (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8))
196 bool input_has_alpha = ((color_type & PNG_COLOR_MASK_ALPHA) != 0);
248 if (color_type == PNG_COLOR_TYPE_GRAY ||
249 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
  /external/chromium_org/third_party/libpng/
pngrtran.c 560 (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) ||
561 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
717 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
792 int color_type = png_ptr->color_type; local
801 * Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
809 !(color_type & PNG_COLOR_MASK_COLOR))
826 if (!(color_type & PNG_COLOR_MASK_COLOR)) /* i.e., GRAY or GRAY_ALPHA */
875 else if (color_type == PNG_COLOR_TYPE_PALETTE)
911 if ((color_type == PNG_COLOR_TYPE_PALETTE && png_ptr->num_trans != 0
    [all...]
pngrutil.c 445 int bit_depth, color_type, compression_type, filter_type; local
465 color_type = buf[9];
475 png_ptr->color_type = (png_byte)color_type;
482 switch (png_ptr->color_type)
510 color_type, interlace_type, compression_type, filter_type);
540 if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR))
548 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
557 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
601 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE
    [all...]
  /external/libpng/
pngrtran.c 560 (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) ||
561 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
717 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
792 int color_type = png_ptr->color_type; local
801 * Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
809 !(color_type & PNG_COLOR_MASK_COLOR))
826 if (!(color_type & PNG_COLOR_MASK_COLOR)) /* i.e., GRAY or GRAY_ALPHA */
875 else if (color_type == PNG_COLOR_TYPE_PALETTE)
911 if ((color_type == PNG_COLOR_TYPE_PALETTE && png_ptr->num_trans != 0
    [all...]
pngtest.c 212 * png_byte color_type color type of pixels
218 /* Counts the number of zero samples (or zero pixels if color_type is 3 */
220 if (row_info->color_type == 0 || row_info->color_type == 3)
272 if (row_info->color_type > 3)color_channels--;
288 if (row_info->color_type > 3)
706 int bit_depth, color_type; local
910 &color_type, &interlace_type, &compression_type, &filter_type))
914 color_type, interlace_type, compression_type, filter_type);
916 color_type, PNG_INTERLACE_NONE, compression_type, filter_type)
    [all...]
pngrutil.c 461 int bit_depth, color_type, compression_type, filter_type; local
481 color_type = buf[9];
491 png_ptr->color_type = (png_byte)color_type;
498 switch (png_ptr->color_type)
526 color_type, interlace_type, compression_type, filter_type);
556 if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR))
564 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
573 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
617 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngrtran.c 532 (png_ptr->color_type & PNG_COLOR_MASK_ALPHA) ||
533 (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE))
667 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
735 int color_type = png_ptr->color_type; local
743 /* Note: if PNG_BACKGROUND_EXPAND is set and color_type is either RGB or
751 !(color_type & PNG_COLOR_MASK_COLOR))
768 if (!(color_type & PNG_COLOR_MASK_COLOR)) /* i.e., GRAY or GRAY_ALPHA */
813 else if (color_type == PNG_COLOR_TYPE_PALETTE)
848 if ((color_type == PNG_COLOR_TYPE_PALETTE && png_ptr->num_trans != 0
    [all...]
pngrutil.c 352 int bit_depth, color_type, compression_type, filter_type; local
372 color_type = buf[9];
382 png_ptr->color_type = (png_byte)color_type;
389 switch (png_ptr->color_type)
414 color_type, interlace_type, compression_type, filter_type);
442 if (!(png_ptr->color_type&PNG_COLOR_MASK_COLOR))
450 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
459 if (png_ptr->color_type != PNG_COLOR_TYPE_PALETTE)
501 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE
    [all...]
  /frameworks/base/tools/aapt/
Images.cpp 75 int color_type; local
82 &outImageInfo->height, &bit_depth, &color_type,
86 //printf("color_type=%d, bit_depth=%d, interlace_type=%d, compression_type=%d\n",
87 // color_type, bit_depth, interlace_type, compression_type);
89 if (color_type == PNG_COLOR_TYPE_PALETTE)
92 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
103 if ((color_type&PNG_COLOR_MASK_ALPHA) == 0)
106 if (color_type == PNG_COLOR_TYPE_GRAY || color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
131 bit_depth, color_type,
979 int color_type; local
    [all...]
  /hardware/ti/omap4xxx/hwc/
hwc.c 1606 __u8 color_type = png_get_color_type(png_ptr, info_ptr); local
    [all...]

Completed in 1070 milliseconds

1 2