Add ui::Bitmap for two-color images.

This commit is contained in:
Jared Boone 2016-02-03 13:23:23 -08:00
parent e2a82061d4
commit deade67fd8

View File

@ -257,6 +257,11 @@ struct Rect {
}
};
struct Bitmap {
const Size size;
const uint8_t* const data;
};
enum class KeyEvent {
/* Ordinals map to bit positions reported by CPLD */
Right = 0,