summaryrefslogtreecommitdiffstats
path: root/image.h
diff options
context:
space:
mode:
authorBert <ber.t@gmx.com>2011-01-21 12:13:52 +0100
committerBert <ber.t@gmx.com>2011-01-21 12:13:52 +0100
commit629d37376d1c9b175a525e8c30f8d468996a3bd6 (patch)
tree7df76a1b9a505ac2a87bb788928bc12e03a0a981 /image.h
parent44921e07aaa36d553f2a4c81d7c431388b5c27e3 (diff)
downloadnsxiv-629d37376d1c9b175a525e8c30f8d468996a3bd6.tar.zst
Merged img_display() into img_render()
Diffstat (limited to 'image.h')
-rw-r--r--image.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/image.h b/image.h
index 659f3b9..091e834 100644
--- a/image.h
+++ b/image.h
@@ -30,6 +30,7 @@ typedef enum scalemode_e {
typedef struct img_s {
float zoom;
scalemode_t scalemode;
+ unsigned char re;
int x;
int y;
int w;
@@ -40,7 +41,6 @@ void imlib_init(win_t*);
void imlib_destroy();
int img_load(img_t*, const char*);
-void img_display(img_t*, win_t*);
void img_render(img_t*, win_t*);
int img_zoom_in(img_t*);