slutpet/dat.h
cat 51d85c011b image display test
bring your own test.png
2025-05-25 14:40:05 +10:00

16 lines
213 B
C

typedef struct Image Image;
struct Image {
int w;
int h;
int bpp;
unsigned char *data;
SDL_Texture *tex;
};
typedef struct State State;
struct State {
SDL_Window *win;
SDL_Renderer *ren;
Image *test;
};