/external/chromium_org/third_party/qcms/src/ |
chain.h | 28 float* qcms_chain_transform(qcms_profile *in, qcms_profile *out, float *src, float *dest, size_t lutSize);
|
qcms.h | 92 typedef struct _qcms_profile qcms_profile; typedef in typeref:struct:_qcms_profile 132 qcms_profile* qcms_profile_create_rgb_with_gamma( 137 qcms_profile* qcms_profile_from_memory(const void *mem, size_t size); 139 qcms_profile* qcms_profile_from_file(FILE *file); 140 qcms_profile* qcms_profile_from_path(const char *path); 142 qcms_profile* qcms_profile_from_unicode_path(const wchar_t *path); 144 qcms_profile* qcms_profile_sRGB(void); 145 void qcms_profile_release(qcms_profile *profile); 147 qcms_bool qcms_profile_is_bogus(qcms_profile *profile); 148 qcms_intent qcms_profile_get_rendering_intent(qcms_profile *profile) [all...] |
transform_util.h | 51 struct matrix build_colorant_matrix(qcms_profile *p);
|
iccread.c | 71 * into a qcms_profile */ 182 static void read_class_signature(qcms_profile *profile, struct mem_source *mem) 196 static void read_color_space(qcms_profile *profile, struct mem_source *mem) 208 static void read_pcs(qcms_profile *profile, struct mem_source *mem) 232 static struct tag_index read_tag_table(qcms_profile *profile, struct mem_source *mem) 258 qcms_bool qcms_profile_is_bogus(qcms_profile *profile) 762 static void read_rendering_intent(qcms_profile *profile, struct mem_source *src) 776 qcms_profile *qcms_profile_create(void) 778 return calloc(sizeof(qcms_profile), 1); 869 qcms_profile* qcms_profile_create_rgb_with_gamma [all...] |
chain.c | 706 struct qcms_modular_transform* qcms_modular_transform_create_input(qcms_profile *in) 769 static struct qcms_modular_transform* qcms_modular_transform_create_output(qcms_profile *out) [all...] |
qcmsint.h | 283 qcms_bool set_rgb_colorants(qcms_profile *profile, qcms_CIE_xyY white_point, qcms_CIE_xyYTRIPLE primaries);
|
transform.c | 216 qcms_bool set_rgb_colorants(qcms_profile *profile, qcms_CIE_xyY white_point, qcms_CIE_xyYTRIPLE primaries) [all...] |
transform_util.c | 278 struct matrix build_colorant_matrix(qcms_profile *p)
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/ |
ImageDecoder.h | 173 static qcms_profile* qcmsOutputDeviceProfile() 175 static qcms_profile* outputDeviceProfile = 0;
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/png/ |
PNGImageDecoder.cpp | 188 qcms_profile* deviceProfile = ImageDecoder::qcmsOutputDeviceProfile(); 191 qcms_profile* inputProfile = qcms_profile_from_memory(colorProfile.data(), colorProfile.size());
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/ |
JPEGImageDecoder.cpp | 531 qcms_profile* deviceProfile = ImageDecoder::qcmsOutputDeviceProfile(); 534 qcms_profile* inputProfile = qcms_profile_from_memory(colorProfile.data(), colorProfile.size());
|
/external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/ |
WEBPImageDecoder.cpp | 340 qcms_profile* deviceProfile = ImageDecoder::qcmsOutputDeviceProfile(); 343 qcms_profile* inputProfile = qcms_profile_from_memory(data, size);
|