openMSX
Icon.hh
Go to the documentation of this file.
1#ifndef ICON_HH
2#define ICON_HH
3
4namespace openmsx {
5
7{
8 unsigned width;
9 unsigned height;
10 unsigned bytes_per_pixel; /* 3:RGB, 4:RGBA */
11 const char* pixel_data;
12};
13
14extern const OpenMSX_Icon openMSX_icon;
15
16} // namespace openmsx
17
18#endif
This file implemented 3 utility functions:
Definition Autofire.cc:11
const OpenMSX_Icon openMSX_icon
Definition Icon.cc:17
const char * pixel_data
Definition Icon.hh:11
unsigned width
Definition Icon.hh:8
unsigned height
Definition Icon.hh:9
unsigned bytes_per_pixel
Definition Icon.hh:10