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

1 2 3 4

  /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;
readpng.c 73 int bit_depth, color_type; variable
135 * etc., but want bit_depth and color_type for later [don't care about
138 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
174 * and blue values, regardless of color_type: */
186 } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
231 if (color_type == PNG_COLOR_TYPE_PALETTE)
233 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
245 if (color_type == PNG_COLOR_TYPE_GRAY ||
246 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
readpng2.c 214 int color_type, bit_depth; local
255 png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
271 * green and blue values, regardless of color_type: */
280 } else if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8) {
303 if (color_type == PNG_COLOR_TYPE_PALETTE)
305 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
317 if (color_type == PNG_COLOR_TYPE_GRAY ||
318 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
writepng.c 88 int color_type, interlace_type; local
143 color_type = PNG_COLOR_TYPE_GRAY;
145 color_type = PNG_COLOR_TYPE_RGB;
147 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
157 mainprog_ptr->sample_depth, color_type, interlace_type,
  /external/libpng/contrib/pngminus/
png2pnm.c 203 int color_type; local
248 &width, &height, &bit_depth, &color_type,
254 if (color_type == PNG_COLOR_TYPE_PALETTE)
257 if (color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
268 if (color_type == PNG_COLOR_TYPE_GRAY ||
269 color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
282 png_get_IHDR (png_ptr, info_ptr, &width, &height, &bit_depth, &color_type,
295 if (color_type == PNG_COLOR_TYPE_GRAY)
297 else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
299 else if (color_type == PNG_COLOR_TYPE_RGB
    [all...]
pnm2png.c 200 int color_type; local
230 color_type = PNG_COLOR_TYPE_GRAY;
247 color_type = PNG_COLOR_TYPE_GRAY;
272 color_type = PNG_COLOR_TYPE_RGB;
302 if (color_type == PNG_COLOR_TYPE_GRAY)
303 color_type = PNG_COLOR_TYPE_GRAY_ALPHA;
304 if (color_type == PNG_COLOR_TYPE_RGB)
305 color_type = PNG_COLOR_TYPE_RGB_ALPHA;
348 if (color_type == PNG_COLOR_TYPE_GRAY)
350 else if (color_type == PNG_COLOR_TYPE_GRAY_ALPHA
    [all...]
  /external/chromium_org/ui/gfx/android/
java_bitmap.cc 45 static int SkColorTypeToBitmapFormat(SkColorType color_type) {
46 switch (color_type) {
64 SkColorType color_type) {
67 int java_bitmap_config = SkColorTypeToBitmapFormat(color_type);
75 SkColorType color_type = skbitmap->colorType(); local
76 DCHECK((color_type == kRGB_565_SkColorType) ||
77 (color_type == kN32_SkColorType));
79 skbitmap->width(), skbitmap->height(), color_type);
java_bitmap.h 59 SkColorType color_type);
  /external/chromium_org/third_party/libvpx/source/libvpx/
vpxenc.h 41 ColorInputType color_type; member in struct:VpxEncoderConfig
  /external/chromium_org/third_party/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/freetype/src/sfnt/
pngshim.c 196 int bitdepth, color_type, interlace; local
249 &bitdepth, &color_type, &interlace,
280 if ( color_type == PNG_COLOR_TYPE_PALETTE )
284 if ( color_type == PNG_COLOR_TYPE_GRAY )
304 if ( color_type == PNG_COLOR_TYPE_GRAY ||
305 color_type == PNG_COLOR_TYPE_GRAY_ALPHA )
317 &bitdepth, &color_type, &interlace,
321 !( color_type == PNG_COLOR_TYPE_RGB ||
322 color_type == PNG_COLOR_TYPE_RGB_ALPHA ) )
328 switch ( color_type )
    [all...]
  /external/libpng/contrib/libtests/
makepng.c 111 channels_of_type(int color_type)
113 if (color_type & PNG_COLOR_MASK_PALETTE)
120 if (color_type & PNG_COLOR_MASK_COLOR)
123 if (color_type & PNG_COLOR_MASK_ALPHA)
132 pixel_depth_of_type(int color_type, int bit_depth)
134 return channels_of_type(color_type) * bit_depth;
138 image_size_of_type(int color_type, int bit_depth, unsigned int *colors)
145 int pixel_depth = pixel_depth_of_type(color_type, bit_depth);
310 generate_row(png_bytep row, size_t rowbytes, unsigned int y, int color_type,
314 png_uint_32 size_max = image_size_of_type(color_type, bit_depth, colors)-1
1281 int color_type = 8; \/* invalid *\/ local
    [all...]
  /external/chromium_org/third_party/libpng/
pngwtran.c 39 /* png_byte color_type; color type of pixels */
228 row_info->color_type != PNG_COLOR_TYPE_PALETTE)
233 if (row_info->color_type & PNG_COLOR_MASK_COLOR)
251 if (row_info->color_type & PNG_COLOR_MASK_ALPHA)
352 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
392 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
441 if (row_info->color_type == PNG_COLOR_TYPE_RGB_ALPHA)
483 else if (row_info->color_type == PNG_COLOR_TYPE_GRAY_ALPHA)
532 (row_info->color_type & PNG_COLOR_MASK_COLOR))
541 if (row_info->color_type == PNG_COLOR_TYPE_RGB
    [all...]
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...]
  /external/chromium_org/content/common/gpu/client/
gl_helper_readback_support.cc 128 GLHelperReadbackSupport::GetReadbackConfig(SkColorType color_type,
137 switch (color_type) {
139 if (format_support_table_[color_type] ==
163 if (format_support_table_[color_type] ==
gl_helper_readback_support.h 30 FormatSupport GetReadbackConfig(SkColorType color_type,
  /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;
  /external/libpng/
pngrtran.c 957 /* Need the IHDR here because of the check on color_type below. */
981 if (png_ptr->color_type == PNG_COLOR_TYPE_PALETTE)
2235 int color_type; local
    [all...]
pnginfo.h 67 png_byte color_type; /* see PNG_COLOR_TYPE_ below (from IHDR) */ member in struct:png_info_def
  /external/chromium_org/content/browser/android/
content_readback_handler.cc 57 jobject color_type,
72 SkColorType sk_color_type = gfx::ConvertToSkiaColorType(color_type);
  /external/chromium_org/content/browser/compositor/
delegated_frame_host.cc 147 const SkColorType color_type) {
149 bool format_support = ((color_type == kAlpha_8_SkColorType) ||
150 (color_type == kRGB_565_SkColorType) ||
151 (color_type == kN32_SkColorType));
162 color_type,
533 const SkColorType color_type,
543 PrepareTextureCopyOutputResult(dst_size_in_pixel, color_type,
551 PrepareBitmapCopyOutputResult(dst_size_in_pixel, color_type, callback,
577 const SkColorType color_type,
590 color_type,
    [all...]
delegated_frame_host.h 104 const SkColorType color_type);
185 const SkColorType color_type,
190 const SkColorType color_type,
195 const SkColorType color_type,
  /external/chromium_org/content/public/browser/android/
content_view_core.h 58 SkColorType color_type,
  /external/chromium_org/content/public/browser/
render_widget_host.h 184 const SkColorType color_type) = 0;
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_android.h 65 SkColorType color_type,
161 const SkColorType color_type) OVERRIDE;
252 SkColorType color_type,
307 const SkColorType color_type,
313 const SkColorType color_type,
324 const SkColorType color_type);
326 bool IsReadbackConfigSupported(SkColorType color_type);

Completed in 1719 milliseconds

1 2 3 4