diff options
author | Bert <ber.t@gmx.com> | 2011-01-26 14:59:32 +0100 |
---|---|---|
committer | Bert <ber.t@gmx.com> | 2011-01-26 14:59:32 +0100 |
commit | 7834dee6e726df88e82ddc5e4c015023a50ba109 (patch) | |
tree | 272cb49856d7089ac61a7e23abaa5700c6c8b8f0 /image.h | |
parent | 2bedd223149e44b8d9ef9a6f2bf07b8a088aabe3 (diff) |
Added a key-mapping for toggle anti-aliasing
Diffstat (limited to 'image.h')
-rw-r--r-- | image.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; @@ -59,4 +60,6 @@ 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 */ |