From 3188d2f5eb52642f437d99ab984a4191d3aa710e Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Thu, 6 Mar 2014 15:14:51 +0900 Subject: [PATCH] Emulator : Enables host GL information to log file Modified execution oder of the prepare feature. For the following reason, ECS intercept the log. Thus, changed to prepare the ECS after write GL information to the log file. Change-Id: I72afd76294ed5d78a8b9fc9ebff62600d04dadfa Signed-off-by: Jinhyung Jo --- tizen/src/emulator.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tizen/src/emulator.c b/tizen/src/emulator.c index a6b7701e4e..45e7e97d2a 100644 --- a/tizen/src/emulator.c +++ b/tizen/src/emulator.c @@ -463,14 +463,14 @@ const gchar * prepare_maru_devices(const gchar *kernel_cmdline) g_strlcpy(maru_kernel_cmdline, kernel_cmdline, LEN_MARU_KERNEL_CMDLINE); - // Prepare basic features - prepare_basic_features(); - // Prepare GL acceleration #ifdef CONFIG_GL_BACKEND prepare_opengl_acceleration(); #endif + // Prepare basic features + prepare_basic_features(); + // Prepare host webcam prepare_host_webcam(); -- 2.34.1