| OLD | NEW |
| 1 #ifndef QCMS_H | 1 #ifndef QCMS_H |
| 2 #define QCMS_H | 2 #define QCMS_H |
| 3 | 3 |
| 4 #ifdef __cplusplus | 4 #ifdef __cplusplus |
| 5 extern "C" { | 5 extern "C" { |
| 6 #endif | 6 #endif |
| 7 | 7 |
| 8 /* if we've already got an ICC_H header we can ignore the following */ | 8 /* if we've already got an ICC_H header we can ignore the following */ |
| 9 #ifndef ICC_H | 9 #ifndef ICC_H |
| 10 /* icc34 defines */ | 10 /* icc34 defines */ |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 qcms_bool qcms_profile_match(qcms_profile *p1, qcms_profile *p2); | 151 qcms_bool qcms_profile_match(qcms_profile *p1, qcms_profile *p2); |
| 152 const char* qcms_profile_get_description(qcms_profile *profile); | 152 const char* qcms_profile_get_description(qcms_profile *profile); |
| 153 | 153 |
| 154 void qcms_profile_precache_output_transform(qcms_profile *profile); | 154 void qcms_profile_precache_output_transform(qcms_profile *profile); |
| 155 | 155 |
| 156 qcms_transform* qcms_transform_create( | 156 qcms_transform* qcms_transform_create( |
| 157 qcms_profile *in, qcms_data_type in_type, | 157 qcms_profile *in, qcms_data_type in_type, |
| 158 qcms_profile* out, qcms_data_type out_type, | 158 qcms_profile* out, qcms_data_type out_type, |
| 159 qcms_intent intent); | 159 qcms_intent intent); |
| 160 | 160 |
| 161 void qcms_transform_release(qcms_transform *); | 161 qcms_bool qcms_transform_create_LUT_zyx_bgra( |
| 162 » » qcms_profile *in, qcms_profile* out, qcms_intent intent, |
| 163 » » int samples, unsigned char* lut); |
| 162 | 164 |
| 163 void qcms_transform_data(qcms_transform *transform, void *src, void *dest, size_
t length); | 165 void qcms_transform_data(qcms_transform *transform, void *src, void *dest, size_
t length); |
| 164 void qcms_transform_data_type(qcms_transform *transform, void *src, void *dest,
size_t length, qcms_output_type type); | 166 void qcms_transform_data_type(qcms_transform *transform, void *src, void *dest,
size_t length, qcms_output_type type); |
| 165 | 167 |
| 168 void qcms_transform_release(qcms_transform *); |
| 169 |
| 166 void qcms_enable_iccv4(); | 170 void qcms_enable_iccv4(); |
| 167 | 171 |
| 168 #ifdef __cplusplus | 172 #ifdef __cplusplus |
| 169 } | 173 } |
| 170 #endif | 174 #endif |
| 171 | 175 |
| 172 #endif | 176 #endif |
| OLD | NEW |