summaryrefslogtreecommitdiffstats
path: root/image.h
diff options
context:
space:
mode:
Diffstat (limited to 'image.h')
-rw-r--r--image.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/image.h b/image.h
index 4e4d816..2284dd5 100644
--- a/image.h
+++ b/image.h
@@ -39,6 +39,7 @@ typedef struct img_s {
unsigned char re;
unsigned char checkpan;
unsigned char zoomed;
+ unsigned char aa;
int x;
int y;
int w;
@@ -56,4 +57,9 @@ int img_zoom_out(img_t*);
int img_pan(img_t*, win_t*, pandir_t);
+int img_rotate_left(img_t*, win_t*);
+int img_rotate_right(img_t*, win_t*);
+
+int img_toggle_antialias(img_t*);
+
#endif /* IMAGE_H */