summaryrefslogtreecommitdiff
path: root/utils/jpgicc
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2010-05-19 19:18:57 +0200
committerMarti Maria <info@littlecms.com>2010-05-19 19:18:57 +0200
commita752207905faf6ac8826bc529d6e9985d547b192 (patch)
treef3fa74cab675b5aabaf95ca2269b734556d6c497 /utils/jpgicc
parent973cfedc0dcda8a82547245f46f851adf7236d93 (diff)
downloadlcms2-a752207905faf6ac8826bc529d6e9985d547b192.tar.gz
Added trilinear interpolation
Diffstat (limited to 'utils/jpgicc')
-rw-r--r--utils/jpgicc/jpgicc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/jpgicc/jpgicc.c b/utils/jpgicc/jpgicc.c
index c299c96..f110fb9 100644
--- a/utils/jpgicc/jpgicc.c
+++ b/utils/jpgicc/jpgicc.c
@@ -210,7 +210,7 @@ cmsHPROFILE CreateITU2PCS_ICC(void)
AToB0 = cmsPipelineAlloc(0, 3, 3);
if (AToB0 == NULL) return NULL;
- ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL);
+ ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL, 0);
if (ColorMap == NULL) return NULL;
cmsPipelineInsertStage(AToB0, cmsAT_BEGIN, ColorMap);
@@ -243,7 +243,7 @@ cmsHPROFILE CreatePCS2ITU_ICC(void)
BToA0 = cmsPipelineAlloc(0, 3, 3);
if (BToA0 == NULL) return NULL;
- ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL);
+ ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL, 0);
if (ColorMap == NULL) return NULL;
cmsPipelineInsertStage(BToA0, cmsAT_BEGIN, ColorMap);