CFLAGS = $(warn) $(opt) $(dbg) $(incpath) -fopenmp
CXXFLAGS = -std=c++11 $(warn) $(opt) $(dbg) $(incpath) -fopenmp
LDFLAGS = $(libpath) -ldrawtext $(libgl_$(sys)) $(libal_$(sys)) -lm -lgmath -lvmath \
- -limago -lresman -lpthread -lassimp -ltreestore -lgoatvr \
+ -limago -lresman -lpthread -lassimp -ltreestore -lgoatvr -lassman \
`pkg-config --libs sdl2 freetype2` -lpng -ljpeg -lz -lvorbisfile -lgomp
sys ?= $(shell uname -s | sed 's/MINGW.*/mingw/')
#endif
#include "imago2.h"
+#include "assman.h"
#include "image.h"
static int pixel_elements(Image::Format fmt);
height = newysz;
}
+static size_t io_read(void *buf, size_t bytes, void *fp)
+{
+ return ass_fread(buf, 1, bytes, fp);
+}
+
+static long io_seek(long offs, int whence, void *fp)
+{
+ ass_fseek(fp, offs, whence);
+ return ass_ftell(fp);
+}
+
bool Image::load(const char *fname)
{
struct img_pixmap pixmap;
+ struct img_io io = {0, io_read, 0, io_seek};
+ ass_file *fp;
+
+ if(!(fp = ass_fopen(fname, "rb"))) {
+ return false;
+ }
+ io.uptr = fp;
img_init(&pixmap);
- if(img_load(&pixmap, fname) == -1) {
+ if(img_read(&pixmap, &io) == -1) {
return false;
}