diff options
author | Tor Andersson <tor@ghostscript.com> | 2004-10-19 08:21:10 +0200 |
---|---|---|
committer | Tor Andersson <tor@ghostscript.com> | 2004-10-19 08:21:10 +0200 |
commit | 4d9498561d4a73ffa2389e9fecd8893ff823a95c (patch) | |
tree | c25e45034de17227f9652f1375c8b2c473b76757 /tree | |
parent | 117725ec61dc4953f4070dacfb2aab7024a7df36 (diff) | |
download | mupdf-4d9498561d4a73ffa2389e9fecd8893ff823a95c.tar.xz |
8-bit rendering and span scissoring
Diffstat (limited to 'tree')
-rw-r--r-- | tree/colorspace.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tree/colorspace.c b/tree/colorspace.c index 6ff61d3e..57fa9ac5 100644 --- a/tree/colorspace.c +++ b/tree/colorspace.c @@ -14,15 +14,15 @@ void fz_convertcolor(fz_colorspace *srcs, float *srcv, fz_colorspace *dsts, float *dstv) { float xyz[3]; - int i; +//int i; if (srcs != dsts) { -printf("convert color from %s to %s\n ", srcs->name, dsts->name); -for(i=0;i<srcs->n;i++)printf("%g ", srcv[i]);printf("\n"); +//printf("convert color from %s to %s\n ", srcs->name, dsts->name); +//for(i=0;i<srcs->n;i++)printf("%g ", srcv[i]);printf("\n"); srcs->toxyz(srcs, srcv, xyz); -printf(" %g %g %g\n ", xyz[0], xyz[1], xyz[2]); +//printf(" %g %g %g\n ", xyz[0], xyz[1], xyz[2]); dsts->fromxyz(dsts, xyz, dstv); -for(i=0;i<dsts->n;i++)printf("%g ", dstv[i]);printf("\n"); +//for(i=0;i<dsts->n;i++)printf("%g ", dstv[i]);printf("\n"); } else { |