Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: third_party/qcms/src/qcms.h

Issue 935333002: Update from https://crrev.com/316786 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/qcms/README.chromium ('k') | third_party/qcms/src/transform.c » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « third_party/qcms/README.chromium ('k') | third_party/qcms/src/transform.c » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698