summaryrefslogtreecommitdiff
path: root/icc/icc.h
diff options
context:
space:
mode:
Diffstat (limited to 'icc/icc.h')
-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
--- 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]);