Storage structure for bitmap pixel data and metadata. More...
#include <gfx.h>
Data Fields | |
| gfx_coord_t | width |
| Width of bitmap. | |
| gfx_coord_t | height |
| Height of bitmap. | |
| enum gfx_bitmap_type | type |
| Bitmap type. | |
| gfx_color_t | color |
| Color for solid color bitmaps. | |
| gfx_color_t * | pixmap |
| Pointer to pixels for bitmap stored in SRAM. | |
| const gfx_color_t __progmem_arg * | progmem |
| Pointer to pixels for bitmap stored in progmem. | |
Storage structure for bitmap pixel data and metadata.
Definition at line 281 of file gfx.h.
Color for solid color bitmaps.
Definition at line 290 of file gfx.h.
Referenced by gfx_draw_bitmap_tiled(), and gfx_put_bitmap().
Height of bitmap.
Definition at line 285 of file gfx.h.
Referenced by gfx_draw_bitmap(), and gfx_draw_bitmap_tiled().
Pointer to pixels for bitmap stored in SRAM.
Definition at line 292 of file gfx.h.
Referenced by gfx_put_bitmap().
| const gfx_color_t __progmem_arg* gfx_bitmap::progmem |
Pointer to pixels for bitmap stored in progmem.
Definition at line 294 of file gfx.h.
Referenced by gfx_put_bitmap().
Bitmap type.
Definition at line 287 of file gfx.h.
Referenced by gfx_draw_bitmap_tiled(), and gfx_put_bitmap().
Width of bitmap.
Definition at line 283 of file gfx.h.
Referenced by gfx_draw_bitmap(), gfx_draw_bitmap_tiled(), and gfx_put_bitmap().
1.6.3