summaryrefslogtreecommitdiffstats
path: root/types.h
diff options
context:
space:
mode:
authorBert Münnich <ber.t@posteo.de>2014-01-09 00:01:57 +0100
committerBert Münnich <ber.t@posteo.de>2014-01-09 00:30:10 +0100
commitf795273b650a4df39dca693f30c3650ec1d3393f (patch)
tree5083053719f528c8eaed3e3c21f2db852c9bdb23 /types.h
parente82397db1507d06db25f952a6b5c470b8cd66e5a (diff)
downloadnsxiv-f795273b650a4df39dca693f30c3650ec1d3393f.tar.zst
Apply flip & rotation on all frames of a multi-frame image; fixes issue #121
Diffstat (limited to 'types.h')
-rw-r--r--types.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/types.h b/types.h
index 2cd305e..fedc1cb 100644
--- a/types.h
+++ b/types.h
@@ -39,14 +39,16 @@ typedef enum {
} direction_t;
typedef enum {
+ DEGREE_0 = 0,
DEGREE_90 = 1,
DEGREE_180 = 2,
DEGREE_270 = 3
} degree_t;
typedef enum {
- FLIP_HORIZONTAL,
- FLIP_VERTICAL
+ FLIP_NONE = 0,
+ FLIP_HORIZONTAL = 1,
+ FLIP_VERTICAL = 2
} flipdir_t;
typedef enum {