Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mm2/Little-CMS.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarti Maria <info@littlecms.com>2010-05-19 21:18:57 +0400
committerMarti Maria <info@littlecms.com>2010-05-19 21:18:57 +0400
commita752207905faf6ac8826bc529d6e9985d547b192 (patch)
treef3fa74cab675b5aabaf95ca2269b734556d6c497 /utils/jpgicc/jpgicc.c
parent973cfedc0dcda8a82547245f46f851adf7236d93 (diff)
Added trilinear interpolation
Diffstat (limited to 'utils/jpgicc/jpgicc.c')
-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);