Hi,
I have difficulties using COffscreencontext after updating 3.6 to 4.3
In a component, I’m using COffscreencontext for drawing the full frame of the current GUI :
…
frame->draw(TotalOffScreen );
…
Then I copy a part of this Offscreencontext to an other one :
…
TotalOffScreen->copyFrom (mPartOffScreen, SizePart,Point);
…
Then, when needed, I draw a part of this context in the current draw context :
…
mPartOffScreen->copyFrom (pContext, rect,Point);
…
With 3.6, everything works fine but with 4.3, I only can see a black rectangle (default Offscrenn color is black)
I tried to use a static bitmap, but without success, same black drawing
What am I missing there ?
Thanks in advance for your help
Best
Xavier