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

Unified Diff: third_party/qcms/src/qcms.h

Issue 892413005: Add bgra (z,y,x) sampled transform lookup table api (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698