From ca4ef1fcdd320ff22bc0db697e537631dad3b6f1 Mon Sep 17 00:00:00 2001 From: Jihoon Chung Date: Mon, 5 Nov 2012 08:06:35 +0900 Subject: [PATCH] set environment value [Issue#] N/A [Problem] Some specific feature "COREGL_FASTPATH" isn't enabled in the RSA [Cause] N/A [Solution] Set environment value with build flag [SCMRequest] N/A Change-Id: I6d190874e4ec16950c66e5f9c0846b3f75d3cdad --- src/wrt-client/wrt-client.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/wrt-client/wrt-client.cpp b/src/wrt-client/wrt-client.cpp index 2f08a3c..4418961 100644 --- a/src/wrt-client/wrt-client.cpp +++ b/src/wrt-client/wrt-client.cpp @@ -725,8 +725,13 @@ int main(int argc, LogDebug("Enable backend"); } } +#ifndef TIZEN_PUBLIC + setenv("COREGL_FASTPATH", "1", 1); +#endif setenv("CAIRO_GL_COMPOSITOR", "msaa", 1); setenv("CAIRO_GL_LAZY_FLUSHING", "yes", 1); + setenv("ELM_IMAGE_CACHE", "0", 1); + // Set log tagging DPL::Log::LogSystemSingleton::Instance().SetTag("WRT-CLIENT"); -- 2.7.4