/external/chromium_org/ui/gfx/image/ |
image_mac.mm | 73 // PNGCodec ignores colorspace related ancillary chunks (sRGB, iCCP). Ignore 74 // colorspace information when decoding directly from PNG to an NSImage so 78 [[ns_image_rep colorSpace] CGColorSpace]);
|
/external/kernel-headers/original/linux/ |
v4l2-mediabus.h | 103 * @colorspace: colorspace of the data (from enum v4l2_colorspace) 110 __u32 colorspace; member in struct:v4l2_mbus_framefmt
|
/hardware/samsung_slsi/exynos5/original-kernel-headers/linux/ |
v4l2-mediabus.h | 105 * @colorspace: colorspace of the data (from enum v4l2_colorspace) 112 __u32 colorspace; member in struct:v4l2_mbus_framefmt
|
/external/chromium_org/chrome/browser/favicon/ |
favicon_util.h | 32 // system colorspace. This makes the favicon look the same in the browser UI
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
ColorSpace.h | 33 enum ColorSpace {
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_format.h | 191 * depending on the colorspace. 196 * Colorspace transformation. 198 enum util_format_colorspace colorspace; member in struct:util_format_description 474 return desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB; 480 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS && 487 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS && 532 switch (desc->colorspace) { 741 enum util_format_colorspace colorspace, 755 if (colorspace == UTIL_FORMAT_COLORSPACE_SRGB) { 756 colorspace = UTIL_FORMAT_COLORSPACE_RGB [all...] |
u_format_parse.py | 107 def __init__(self, name, layout, block_width, block_height, channels, swizzles, colorspace): 115 self.colorspace = colorspace 254 colorspace = fields[9] 258 if colorspace in (RGB, SRGB): 263 elif colorspace == ZS: 301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace)
|
/external/chromium_org/third_party/skia/src/pdf/ |
SkPDFFormXObject.h | 55 void init(const char* colorSpace,
|
/external/chromium_org/tools/gyp/test/ios/app-bundle/TestApp/English.lproj/ |
Main_iPhone.storyboard | 16 <color key="backgroundColor" white="1" alpha="1" colorSpace="custom" customColorSpace="calibratedWhite"/>
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_format.h | 191 * depending on the colorspace. 196 * Colorspace transformation. 198 enum util_format_colorspace colorspace; member in struct:util_format_description 474 return desc->colorspace == UTIL_FORMAT_COLORSPACE_SRGB; 480 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS && 487 return desc->colorspace == UTIL_FORMAT_COLORSPACE_ZS && 532 switch (desc->colorspace) { 741 enum util_format_colorspace colorspace, 755 if (colorspace == UTIL_FORMAT_COLORSPACE_SRGB) { 756 colorspace = UTIL_FORMAT_COLORSPACE_RGB [all...] |
u_format_parse.py | 107 def __init__(self, name, layout, block_width, block_height, channels, swizzles, colorspace): 115 self.colorspace = colorspace 254 colorspace = fields[9] 258 if colorspace in (RGB, SRGB): 263 elif colorspace == ZS: 301 format = Format(name, layout, block_width, block_height, channels, swizzles, colorspace)
|
/external/skia/src/pdf/ |
SkPDFFormXObject.h | 55 void init(const char* colorSpace,
|
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/jni/ |
Android.mk | 34 colorspace.cpp \
|
/external/jmonkeyengine/engine/src/lwjgl/com/jme3/system/lwjgl/ |
LwjglDisplay.java | 229 int colorSpace = image.getRGB(j, i);
230 imageBuffer[counter + 0] = (byte) ((colorSpace << 8) >> 24);
231 imageBuffer[counter + 1] = (byte) ((colorSpace << 16) >> 24);
232 imageBuffer[counter + 2] = (byte) ((colorSpace << 24) >> 24);
233 imageBuffer[counter + 3] = (byte) (colorSpace >> 24);
|
/external/jpeg/ |
jccolor.c | 8 * This file contains input colorspace conversion routines. 55 * colorspace anyway. 84 * Initialize for RGB->YCC colorspace conversion. 120 * Convert some rows of samples to the JPEG colorspace. 181 * Convert some rows of samples to the JPEG colorspace. 219 * Convert some rows of samples to the JPEG colorspace. 276 * Convert some rows of samples to the JPEG colorspace. 335 * Convert some rows of samples to the JPEG colorspace. 416 * Module initialization routine for input colorspace conversion.
|
/external/opencv/otherlibs/highgui/ |
grfmt_jpeg2000.cpp | 161 int colorspace; local 165 colorspace = JAS_CLRSPC_SRGB; 170 colorspace = JAS_CLRSPC_SGRAY; // TODO GENGRAY or SGRAY? 173 // convert to the desired colorspace 176 jas_cmprof_t *clrprof = jas_cmprof_createfromclrspc( colorspace ); 187 fprintf(stderr, "JPEG 2000 LOADER ERROR: cannot convert colorspace\n"); 191 fprintf(stderr, "JPEG 2000 LOADER ERROR: unable to create colorspace\n"); 250 fprintf(stderr, "JPEG2000 LOADER ERROR: colorspace conversion failed\n" );
|
/hardware/samsung_slsi/exynos5/include/ |
exynos_format.h | 51 // Gamut (colorspace range) 60 // Chromaticities (colorspace parameters)
|
/external/chromium_org/third_party/libwebp/enc/ |
picture.c | 10 // WebPPicture utils: colorspace conversion, crop, ... 43 const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK; 44 const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT; 212 const int is_yuv422 = IS_YUV_CSP(pic->colorspace, WEBP_YUV422); 213 if (IS_YUV_CSP(pic->colorspace, WEBP_YUV420) || is_yuv422) { 253 if (IS_YUV_CSP(dst->colorspace, WEBP_YUV422)) { 304 IS_YUV_CSP(dst->colorspace, WEBP_YUV422) ? (left >> 1) : left; 351 if (IS_YUV_CSP(tmp.colorspace, WEBP_YUV422)) { 446 const int s = IS_YUV_CSP(tmp.colorspace, WEBP_YUV422) ? 2 : 1; 598 const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK [all...] |
/external/webp/src/enc/ |
picture.c | 10 // WebPPicture utils: colorspace conversion, crop, ... 43 const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK; 44 const int has_alpha = picture->colorspace & WEBP_CSP_ALPHA_BIT; 212 const int is_yuv422 = IS_YUV_CSP(pic->colorspace, WEBP_YUV422); 213 if (IS_YUV_CSP(pic->colorspace, WEBP_YUV420) || is_yuv422) { 253 if (IS_YUV_CSP(dst->colorspace, WEBP_YUV422)) { 304 IS_YUV_CSP(dst->colorspace, WEBP_YUV422) ? (left >> 1) : left; 351 if (IS_YUV_CSP(tmp.colorspace, WEBP_YUV422)) { 446 const int s = IS_YUV_CSP(tmp.colorspace, WEBP_YUV422) ? 2 : 1; 598 const WebPEncCSP uv_csp = picture->colorspace & WEBP_CSP_UV_MASK [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/ |
FEDisplacementMap.h | 53 void setResultColorSpace(ColorSpace) OVERRIDE;
|
/external/chromium_org/third_party/WebKit/Source/platform/mac/ |
ColorMac.h | 38 // These functions assume NSColors are in DeviceRGB colorspace
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 70 inline bool turboSwizzled(J_COLOR_SPACE colorSpace) { return colorSpace == JCS_EXT_RGBA || colorSpace == JCS_EXT_BGRA; } 71 inline bool colorSpaceHasAlpha(J_COLOR_SPACE colorSpace) { return turboSwizzled(colorSpace); } 672 template <J_COLOR_SPACE colorSpace> void setPixel(ImageFrame& buffer, ImageFrame::PixelData* pixel, JSAMPARRAY samples, int column) 674 JSAMPLE* jsample = *samples + column * (colorSpace == JCS_RGB ? 3 : 4); 676 switch (colorSpace) { 696 template <J_COLOR_SPACE colorSpace> bool outputRows(JPEGImageReader* reader, ImageFrame& buffer) 710 if (reader->colorTransform() && colorSpace == JCS_RGB [all...] |
/external/chromium_org/third_party/libwebp/webp/ |
encode.h | 276 // since these are the respective native colorspace for these formats. 280 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr). member in struct:WebPPicture 344 // Note that, by default, use_argb is false and colorspace is WEBP_YUV420. 353 // Allocate y/u/v buffers as per colorspace/width/height specification. 386 // picture uses the YUV420 colorspace, the top and left coordinates will be 394 // the 'src' source picture. If the source picture uses the YUV420 colorspace, 415 // Colorspace conversion function to import RGB samples. 438 // Converts picture->argb data to the YUVA format specified by 'colorspace'. 440 // non-opaque transparent values is detected, and 'colorspace' will b [all...] |
/external/webp/include/webp/ |
encode.h | 276 // since these are the respective native colorspace for these formats. 280 WebPEncCSP colorspace; // colorspace: should be YUV420 for now (=Y'CbCr). member in struct:WebPPicture 344 // Note that, by default, use_argb is false and colorspace is WEBP_YUV420. 353 // Allocate y/u/v buffers as per colorspace/width/height specification. 386 // picture uses the YUV420 colorspace, the top and left coordinates will be 394 // the 'src' source picture. If the source picture uses the YUV420 colorspace, 415 // Colorspace conversion function to import RGB samples. 438 // Converts picture->argb data to the YUVA format specified by 'colorspace'. 440 // non-opaque transparent values is detected, and 'colorspace' will b [all...] |
/external/chromium_org/chrome/utility/cloud_print/ |
pwg_encoder.cc | 97 LOG(ERROR) << "Unsupported colorspace."; 164 LOG(ERROR) << "Unsupported colorspace."; 187 current_row, image.size().width(), image.colorspace(), output)) {
|