blob: 7594d0df676937799a12a94f1df7737b57b7d2ec [file] [log] [blame]
/**
* \file lcd_gimp_image.h
*
* Include Defines for the the lcd images.
*/
#ifndef _GIMP_IMAGE_
#define _GIMP_IMAGE_
#include <stdint.h>
typedef struct _SGIMPImage
{
uint32_t dwWidth;
uint32_t dwHeight;
uint32_t dwBytes_per_pixel; /* 3:RGB, 4:RGBA */
uint8_t* pucPixel_data ;
} SGIMPImage ;
#endif // _GIMP_IMAGE_