diff options
Diffstat (limited to 'src/meh.h')
-rw-r--r-- | src/meh.h | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -13,20 +13,20 @@ struct imageformat{ typedef enum{ NONE, - IMG, - ALLOC, - LINEAR, - LINEARDRAWN, - BILINEAR, - BILINEARDRAWN, -} drawstate; + FASTLOADED, + FASTSCALED, + FASTDRAWN, + LOADED, + SCALED, + DRAWN, + NOOP +} imgstate; struct image{ unsigned char *buf; unsigned int bufwidth, bufheight; struct imageformat *fmt; - int redraw; - drawstate state; + imgstate state; XImage *ximg; }; |