summaryrefslogtreecommitdiffstats
path: root/image.h
diff options
context:
space:
mode:
authorbaskerville <nihilhill@gmail.com>2012-05-06 09:39:45 +0200
committerbaskerville <nihilhill@gmail.com>2012-05-06 09:39:45 +0200
commitba0a5b89fa1e9147c60ddb8bbc2b1bcbe2995cd8 (patch)
treede37696ccd939fb4df934483b39f5e30071ab341 /image.h
parent56b6d23c0cb05973415bdd2c66af26e8f7db2539 (diff)
downloadnsxiv-ba0a5b89fa1e9147c60ddb8bbc2b1bcbe2995cd8.tar.zst
Added horizontal and vertical flip commands
Diffstat (limited to 'image.h')
-rw-r--r--image.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/image.h b/image.h
index bb4b548..5661b01 100644
--- a/image.h
+++ b/image.h
@@ -76,9 +76,14 @@ bool img_move(img_t*, float, float);
bool img_pan(img_t*, direction_t, int);
bool img_pan_edge(img_t*, direction_t);
+void img_rotate(img_t*, int);
void img_rotate_left(img_t*);
void img_rotate_right(img_t*);
+void img_flip(img_t*, int);
+void img_flip_horizontal(img_t*);
+void img_flip_vertical(img_t*);
+
void img_toggle_antialias(img_t*);
bool img_frame_navigate(img_t*, int);