summaryrefslogtreecommitdiff
path: root/icc/icc.h
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
committerJörg Frings-Fürst <debian@jff-webhosting.net>2015-11-06 05:38:49 +0100
commit9491825ddff7a294d1f49061bae7044e426aeb2e (patch)
tree06e651099f87140ec534ae47fb8ce1ac6ec7976d /icc/icc.h
parentfa756339d4204bff7f2820067f58214d32780d17 (diff)
Imported Upstream version 1.8.3
Diffstat (limited to 'icc/icc.h')
-rwxr-xr-x[-rw-r--r--]icc/icc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/icc/icc.h b/icc/icc.h
index 4eba0ec..36ec73a 100644..100755
--- a/icc/icc.h
+++ b/icc/icc.h
@@ -1754,6 +1754,9 @@ void icmMul3(double out[3], double in1[3], double in2[3]);
#define ICMMUL3(o, i, j) ((o)[0] = (i)[0] * (j)[0], (o)[1] = (i)[1] * (j)[1], (o)[2] = (i)[2] * (j)[2])
+/* Take absolute of a 3 vector */
+void icmAbs3(double out[3], double in[3]);
+
/* Compute the dot product of two 3 vectors */
double icmDot3(double in1[3], double in2[3]);