[NUI][API13_MR](Window) Add API to request rendering forcibly.#7559
[NUI][API13_MR](Window) Add API to request rendering forcibly.#7559hinohie wants to merge 1 commit intoSamsung:API13_MRfrom
Conversation
Support API to make the window render forcibly. KeepRendering might skip render actions if their is nothing upated. And RenderOnce() API request rendering immediatly, before message flushing. So we need to make some seperated API, sync with message flush timing. Usually be used pairwise with `AddFrameRenderedCallback` or `AddFramePresentedCallback`. Signed-off-by: Eunki Hong <eunkiki.hong@samsung.com>
Internal API ChangedAdded: 1, Removed: 0, Changed: 0Added+ /// <since_tizen>none</since_tizen
+ [EditorBrowsable(EditorBrowsableState.Never)]
+ System.Void Tizen.NUI.Window::SetForceRendering(System.UInt32)
|
Code Review1. Grammar issue in XML summary 2. Malformed XML doc comment 3. Minor: existing typo in interop |
Support API to make the window render forcibly.
KeepRendering might skip render actions if their is nothing upated. And RenderOnce() API request rendering immediatly, before message flushing.
So we need to make some seperated API, sync with message flush timing.
Usually be used pairwise with
AddFrameRenderedCallbackorAddFramePresentedCallback.Description of Change
API Changes