spmenu/libs/img.h
speedie 5745b52bc9 Add work in progress support for images on Wayland
This commit also adds MASSIVE speed improvements to image drawing, due
to code cleanup. There are still a *few* issues to resolve, one is
X11 related, and one is caused by alpha/blending.
2023-06-08 19:40:30 +02:00

27 lines
750 B
C

/* See LICENSE file for copyright and license details. */
#if USEIMAGE
#include <errno.h>
#include <pwd.h>
#include <Imlib2.h>
#include <openssl/md5.h>
static void setimagesize(int width, int height);
static void setimageopts(void);
static void cleanupimage(void);
static void drawimage(void);
static void flipimage(void);
static void loadimage(const char *file, int *width, int *height);
static void loadimagecache(const char *file, int *width, int *height);
static void resizetoimageheight(int imagewidth, int imageheight);
#if USEWAYLAND
static void resizetoimageheight_wl(int imageheight);
#endif
#if USEX
static void resizetoimageheight_x11(int imageheight);
#endif
static void store_image_vars(void);
static Imlib_Image image = NULL;
#endif