From be6e3b5be7fdb3f0f60c07d05d1d3ace6a78dbd6 Mon Sep 17 00:00:00 2001 From: Shanmuga Pandi M Date: Wed, 3 Dec 2014 18:57:21 +0900 Subject: [PATCH] Added kWaitForFrameComplete switch to enable glFinish call for rendering current frame. This switch is required for enabling glFinish call for rendering current frame, related commit: http://165.213.202.130:8080/#/c/72671/ Original Author: m.nataraj Original Patch: http://165.213.202.130:8080/#/c/72740/1 Bug: http://107.108.218.239/bugzilla/show_bug.cgi?id=9098 Change-Id: I3ab7f74432809af63ce5d11ab611365fde5ca728 Signed-off-by: m.nataraj Signed-off-by: Shanmuga Pandi M --- tizen_src/impl/command_line_efl.cc | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tizen_src/impl/command_line_efl.cc b/tizen_src/impl/command_line_efl.cc index a28d64a..0ebd50c 100644 --- a/tizen_src/impl/command_line_efl.cc +++ b/tizen_src/impl/command_line_efl.cc @@ -56,6 +56,8 @@ content::MainFunctionParams CommandLineEfl::GetDefaultPortParams() { // (prashant.n): New mechanism supports drawing frame to mailbox only. p_command_line->AppendSwitch(cc::switches::kCompositeToMailbox); + // Enables glFinish call + p_command_line->AppendSwitch(switches::kWaitForFrameComplete); #if defined(OS_TIZEN) p_command_line->AppendSwitch(switches::kEnableOverscrollNotifications); -- 2.7.4