Is it possible to have different AutoFragmentBitmap settings inside single application?
At the beginning of application I have set
IEGlobalSettings()->AutoFragmentBitmap = false;
However, for undo buffer purpose, I don't need contiguous memory, i.e. it can be fragmented. So, can I alter AutoFragmentBitmap setting and then go back to initial state:
IEGlobalSettings()->AutoFragmentBitmap = false;
UndoBuffer->Add(Image, &boundRect);
IEGlobalSettings()->AutoFragmentBitmap = true;
TIA,
Siniša