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-20 14:06:42 +0400
committerMarti Maria <info@littlecms.com>2010-05-20 14:06:42 +0400
commit5e638baf4848861a4075c2cfdf7c77623633a152 (patch)
tree306334618a9067d03b93e0b9415d3474eed39671 /utils/jpgicc
parenta752207905faf6ac8826bc529d6e9985d547b192 (diff)
Revert "Added trilinear interpolation"
This reverts commit a752207905faf6ac8826bc529d6e9985d547b192.
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 f110fb9..c299c96 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, 0);
+ ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL);
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, 0);
+ ColorMap = cmsStageAllocCLut16bit(0, GRID_POINTS, 3, 3, NULL);
if (ColorMap == NULL) return NULL;
cmsPipelineInsertStage(BToA0, cmsAT_BEGIN, ColorMap);