X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fwindow-system%2Fcommon%2Fwindow-impl.cpp;h=7c6ebfc22c4b97e313ea9be58e820cb00cf9ce08;hb=6b609829e437193b41eddfa934124fe9a42dea7f;hp=52ba60bd481708c2dfde1bb974c7f29292e340e8;hpb=738fd571c706537f8897163684fcb9d3fd9d535e;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/window-system/common/window-impl.cpp b/dali/internal/window-system/common/window-impl.cpp index 52ba60b..7c6ebfc 100644 --- a/dali/internal/window-system/common/window-impl.cpp +++ b/dali/internal/window-system/common/window-impl.cpp @@ -67,6 +67,7 @@ Window* Window::New(Any surface, const std::string& name, const std::string& cla { Window* window = new Window(); window->mIsTransparent = windowData.GetTransparency(); + window->mIsFrontBufferRendering = windowData.GetFrontBufferRendering(); window->Initialize(surface, windowData.GetPositionSize(), name, className, windowData.GetWindowType()); return window; } @@ -106,7 +107,8 @@ Window::Window() mFocused(false), mIsWindowRotating(false), mIsEnabledUserGeometry(false), - mIsEmittedWindowCreatedEvent(false) + mIsEmittedWindowCreatedEvent(false), + mIsFrontBufferRendering(false) { } @@ -209,6 +211,11 @@ void Window::Initialize(Any surface, const PositionSize& positionSize, const std // For Debugging mNativeWindowId = mWindowBase->GetNativeWindowId(); + + if(mIsFrontBufferRendering) + { + SetFrontBufferRendering(mIsFrontBufferRendering); + } } void Window::SetRenderNotification(TriggerEventInterface* renderNotification)