When working with bitmap images it’s common to create one resource with many small images inside AKA atlas, and then render only part of the image. Pebble API supports such workflow with gbitmap_create_as_sub_bitmap function.
But is it possible to do the same with PDC? Is it even a good idea to have an atlas PDC image and then render only selected parts of it?
I’m currently working on font, made as PDC file, with big numbers for my new watchface and I went straight for atlas image approach Watchface: Naive - #16 by irek . But I see no function in pebble.h that could make this work.
Is it a better idea to have each digit image as separate resource?