Hello all,
If I do
static LCDPattern kColorChekerboard = {0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55};
pd->graphics->clear(kColorChekerboard);
pd->graphics->fillRect(64, 64, 128, 128, kColorBlack);
pd->graphics->fillEllipse(256, 64, 128, 128, 0.0f, 0.0f, kColorBlack);
Then it comes out as I expect
But what I really want is to fill shapes with a pattern
static LCDPattern kColorChekerboard = {0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55, 0xaa, 0x55};
pd->graphics->clear(kColorBlack);
pd->graphics->fillRect(64, 64, 128, 128, kColorChekerboard);
pd->graphics->fillEllipse(256, 64, 128, 128, 0.0f, 0.0f, kColorChekerboard);
and here it does not seem to work.
Any ideas what is wrong here?
Thanks - Tim