Hi all,

This is about phone application, tested on N8
I have lets say 40 objects derived from QGraphicsPixmapItem, these object lets name them "icon", are created in single class "iconView" during application start, every "icon" object uses 5 QPixmaps to visualize its state. Is it worth to load these QPixmaps once in iconView class before creating "icon" objects, and only pass pointers to loaded QPixmaps to each "icon" object, instead of loading every pixmap inside "icon" object multiple times ?
Every pixmap is about 10k in size, so they are small, but 40*5*10k=2MB, still not much, however, I have also some amount of other objects and recently I had to change epocheapsize in .pro file, because app didn't start.
So is it worth an effort to share QPixmap between QGraphicsItems or just epochepasize values are really small by default, and I should increase them and forget about issue?

best regards
Marek