0

Is it possible to store NSBitmapImageRep copy to NSMutableDictionary or NSMutableArray? I need to save copy of OpenGL texture somewhere so, that I could use it later. So if I would do glReadPixels, store readed pixels to NSBitmapImageRep and somehow store it to NSMutableDictionary or NSMutableArray will it work? Or maby there are some other ways to do it?

hockeyman
  • 1,141
  • 6
  • 27
  • 57

1 Answers1

1

Yes, you can store it in an array / dictionary. If you specifically want to make a copy of the bitmap rep before you put it in an array, you can do so.

[array addObject:[bitmapRep copy]];
sudo rm -rf
  • 29,408
  • 19
  • 102
  • 161