Revert "[android] Completely draw each frame to avoid swapBuffers with empty surface"

This reverts commit 4bf4a0a01d5564b7ccfb6fe1b1d1cf02d2239d16.
This commit is contained in:
rachytski 2012-01-30 19:03:46 +04:00 committed by Alex Zolotarev
parent cb0cc11a11
commit a5dc6d3d47

View file

@ -125,16 +125,16 @@ void Framework::Resize(int w, int h)
void Framework::DrawFrame()
{
// if (m_work.NeedRedraw())
// {
// m_work.SetNeedRedraw(false);
if (m_work.NeedRedraw())
{
m_work.SetNeedRedraw(false);
shared_ptr<PaintEvent> paintEvent(new PaintEvent(m_work.GetRenderPolicy()->GetDrawer().get()));
m_work.BeginPaint(paintEvent);
m_work.DoPaint(paintEvent);
m_work.EndPaint(paintEvent);
// }
}
}
void Framework::Move(int mode, double x, double y)