From 3ceb0eac655e04da262b8148b35ee37a8ae3402a Mon Sep 17 00:00:00 2001 From: Harry Jeffery Date: Sun, 26 Nov 2017 12:06:41 +0000 Subject: Rename imv_texture -> imv_image --- src/image.h | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 src/image.h (limited to 'src/image.h') diff --git a/src/image.h b/src/image.h new file mode 100644 index 0000000..5b17fff --- /dev/null +++ b/src/image.h @@ -0,0 +1,37 @@ +#ifndef IMV_TEXTURE_H +#define IMV_TEXTURE_H + +#include +#include + +struct imv_image { + int width; /* width of the image overall */ + int height; /* height of the image overall */ + int num_chunks; /* number of chunks allocated */ + SDL_Texture **chunks; /* array of chunks */ + int num_chunks_wide; /* number of chunks per row of the image */ + int num_chunks_tall; /* number of chunks per column of the image */ + int chunk_width; /* chunk width */ + int chunk_height; /* chunk height */ + int last_chunk_width; /* width of rightmost chunk */ + int last_chunk_height; /* height of bottommost chunk */ + SDL_Renderer *renderer; /* SDL renderer to draw to */ +}; + + +/* Creates an instance of imv_image */ +struct imv_image *imv_image_create(SDL_Renderer *r); + +/* Cleans up an imv_image instance */ +void imv_image_free(struct imv_image *image); + +/* Updates the image to contain the data in the bitmap parameter */ +int imv_image_set_bitmap(struct imv_image *image, FIBITMAP *bmp); + +/* Draw the image at the given position with the given scale */ +void imv_image_draw(struct imv_image *image, int x, int y, double scale); + +#endif + + +/* vim:set ts=2 sts=2 sw=2 et: */ -- cgit v1.2.3