about summary refs log tree commit diff
path: root/editor/pamflip/flip.h
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-18 02:37:18 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2010-05-18 02:37:18 +0000
commit60a0d64307394bad62684c32bbccf89552d15090 (patch)
treeba89fd811ea731b9a0cc0e64ff4fe9c05e92f0b2 /editor/pamflip/flip.h
parent559136d4679d53037e4b74dd3f833b2ea89ccc05 (diff)
downloadnetpbm-mirror-60a0d64307394bad62684c32bbccf89552d15090.tar.gz
netpbm-mirror-60a0d64307394bad62684c32bbccf89552d15090.tar.xz
netpbm-mirror-60a0d64307394bad62684c32bbccf89552d15090.zip
Pamflip PBM speedup with SSE et al
git-svn-id: http://svn.code.sf.net/p/netpbm/code/trunk@1214 9d0c8265-081b-0410-96cb-a4ca84ce46f8
Diffstat (limited to 'editor/pamflip/flip.h')
-rw-r--r--editor/pamflip/flip.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/editor/pamflip/flip.h b/editor/pamflip/flip.h
new file mode 100644
index 00000000..612a7f84
--- /dev/null
+++ b/editor/pamflip/flip.h
@@ -0,0 +1,16 @@
+#ifndef FLIP_H_INCLUDED
+#define FLIP_H_INCLUDED
+
+struct xformCore {
+    /* a b
+       c d
+    */
+    int a;  /* -1, 0, or 1 */
+    int b;  /* -1, 0, or 1 */
+    int c;  /* -1, 0, or 1 */
+    int d;  /* -1, 0, or 1 */
+};
+
+
+
+#endif