gfx->setPixel doesn't draw anything in an image context

using pd->graphics-setPixel(x, y, 1); with a bitmap context set draws absolutely nothing to the image. for now gfx->fillRect(x, y, 1, 1, 1); does the trick

1 Like

gah, you're right, it's always drawing to the main framebuffer. :man_facepalming: I'll fix that and also look for anywhere else in there I have it pointing at the wrong target.

Thanks for catching this!