diff options
author | Bastien Dejean <nihilhill@gmail.com> | 2013-06-23 16:02:26 +0200 |
---|---|---|
committer | Bert Münnich <be.muennich@gmail.com> | 2013-08-10 15:33:14 +0200 |
commit | 7e51c35801f9921685c3acf0d1d17d9370ae4d59 (patch) | |
tree | 1af111dd3a1a64ed34d3398ae9029036fb50c15f /types.h | |
parent | 68ff9d71f1c9c2e27b2eabea22433f39b7cd98bb (diff) |
Handle 180 degrees image rotation
Diffstat (limited to 'types.h')
-rw-r--r-- | types.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -39,6 +39,12 @@ typedef enum { } direction_t; typedef enum { + ROTATE_90, + ROTATE_270, + ROTATE_180 +} rotate_t; + +typedef enum { FLIP_HORIZONTAL, FLIP_VERTICAL } flipdir_t; |