gint/src/image/image_data_size.c

7 lines
107 B
C
Raw Normal View History

#include <gint/image.h>
int image_data_size(image_t const *img)
{
return img->stride * img->height;
}