Chromium Code Reviews| Index: third_party/qcms/src/qcms.h |
| diff --git a/third_party/qcms/src/qcms.h b/third_party/qcms/src/qcms.h |
| index c69a7727c1d505d013cc7ac85d82a316c0a77bf1..6c75e8be0f03128e8e6da1ac200a5aeec98f28f2 100644 |
| --- a/third_party/qcms/src/qcms.h |
| +++ b/third_party/qcms/src/qcms.h |
| @@ -158,11 +158,15 @@ qcms_transform* qcms_transform_create( |
| qcms_profile* out, qcms_data_type out_type, |
| qcms_intent intent); |
| -void qcms_transform_release(qcms_transform *); |
| +qcms_bool qcms_transform_create_color_cube_skia( |
|
Ken Russell (switch to Gerrit)
2015/02/04 22:23:05
Let's remove the Skia reference from this function
Noel Gordon
2015/02/05 16:28:52
changed skia -> zyx_bgra to indicate cube sampling
Ken Russell (switch to Gerrit)
2015/02/06 02:49:54
Great. Thanks.
|
| + qcms_profile *in, qcms_profile* out, |
| + int samples, unsigned char* cube); |
| void qcms_transform_data(qcms_transform *transform, void *src, void *dest, size_t length); |
| void qcms_transform_data_type(qcms_transform *transform, void *src, void *dest, size_t length, qcms_output_type type); |
| +void qcms_transform_release(qcms_transform *); |
| + |
| void qcms_enable_iccv4(); |
| #ifdef __cplusplus |