mSurface->SetFullSwapNextFrame();
- // Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
- {
- mAdaptor->RequestUpdateOnce();
- }
-
DALI_LOG_RELEASE_INFO("Window (%p), WinId (%d), Show(): iconified = %d, visible = %d\n", this, mNativeWindowId, mIconified, mVisible);
}
}
mSurface->SetFullSwapNextFrame();
-
- // Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
- {
- mAdaptor->RequestUpdateOnce();
- }
}
Dali::Window::WindowSize Window::GetSize() const
}
mSurface->SetFullSwapNextFrame();
-
- // Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
- {
- mAdaptor->RequestUpdateOnce();
- }
}
void Window::SetLayout(unsigned int numCols, unsigned int numRows, unsigned int column, unsigned int row, unsigned int colSpan, unsigned int rowSpan)
mSurface->SetFullSwapNextFrame();
// Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
+ if(DALI_LIKELY(mAdaptor) && !iconified)
{
mAdaptor->RequestUpdateOnce();
}
}
mSurface->SetFullSwapNextFrame();
-
- // Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
- {
- mAdaptor->RequestUpdateOnce();
- }
}
void Window::OnTouchPoint(Dali::Integration::Point& point, int timeStamp)
}
mSurface->SetFullSwapNextFrame();
-
- // Need to update/render once if surface set full swaped after adaptor call ProcessCoreEvents().
- if(DALI_LIKELY(mAdaptor))
- {
- mAdaptor->RequestUpdateOnce();
- }
}
void Window::OnAuxiliaryMessage(const std::string& key, const std::string& value, const Property::Array& options)