summaryrefslogtreecommitdiff
path: root/src/cmsxform.c
diff options
context:
space:
mode:
authorMarti <marti.maria@tktbrainpower.com>2016-04-22 09:50:02 +0200
committerMarti <marti.maria@tktbrainpower.com>2016-04-22 09:50:02 +0200
commit7fa92eb7ad115e8761157a0ae16c04d0bb183285 (patch)
treeecf4af8aa3e31b9e5c9a4ae40eceb193b40aeafb /src/cmsxform.c
parent154e30a5cc815268f1320046de1457a7e9165098 (diff)
downloadlcms2-7fa92eb7ad115e8761157a0ae16c04d0bb183285.tar.gz
minor cosmethics
Diffstat (limited to 'src/cmsxform.c')
-rw-r--r--src/cmsxform.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/cmsxform.c b/src/cmsxform.c
index be491af..0364d06 100644
--- a/src/cmsxform.c
+++ b/src/cmsxform.c
@@ -396,18 +396,18 @@ void PrecalculatedXFORM(_cmsTRANSFORM* p,
for (i = 0; i < LineCount; i++) {
- accum = (cmsUInt8Number*)in + strideIn;
- output = (cmsUInt8Number*)out + strideOut;
+ accum = (cmsUInt8Number*)in + strideIn;
+ output = (cmsUInt8Number*)out + strideOut;
- for (j = 0; j < PixelsPerLine; j++) {
+ for (j = 0; j < PixelsPerLine; j++) {
- accum = p->FromInput(p, wIn, accum, Stride->BytesPerPlaneIn);
- p ->Lut ->Eval16Fn(wIn, wOut, p -> Lut->Data);
- output = p->ToOutput(p, wOut, output, Stride->BytesPerPlaneOut);
- }
+ accum = p->FromInput(p, wIn, accum, Stride->BytesPerPlaneIn);
+ p->Lut->Eval16Fn(wIn, wOut, p->Lut->Data);
+ output = p->ToOutput(p, wOut, output, Stride->BytesPerPlaneOut);
+ }
- strideIn += Stride->BytesPerLineIn;
- strideOut += Stride->BytesPerLineOut;
+ strideIn += Stride->BytesPerLineIn;
+ strideOut += Stride->BytesPerLineOut;
}
}