summaryrefslogtreecommitdiffstats
path: root/third_party/jpeg-xl/lib/include/jxl/cms.h
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/jpeg-xl/lib/include/jxl/cms.h')
-rw-r--r--third_party/jpeg-xl/lib/include/jxl/cms.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/third_party/jpeg-xl/lib/include/jxl/cms.h b/third_party/jpeg-xl/lib/include/jxl/cms.h
new file mode 100644
index 0000000000..6616a2681c
--- /dev/null
+++ b/third_party/jpeg-xl/lib/include/jxl/cms.h
@@ -0,0 +1,24 @@
+// Copyright (c) the JPEG XL Project Authors. All rights reserved.
+//
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+#ifndef JXL_CMS_H_
+#define JXL_CMS_H_
+
+// ICC profiles and color space conversions.
+
+#include <jxl/cms_interface.h>
+#include <jxl/jxl_cms_export.h>
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+JXL_CMS_EXPORT const JxlCmsInterface* JxlGetDefaultCms();
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // JXL_CMS_H_