[Tizen] Enable shaderFileCaching in InitializeGLES accepted/tizen/unified/20250530.090427 accepted/tizen/unified/x/20250531.232949
authorWoochan Lee <wc0917.lee@samsung.com>
Thu, 22 May 2025 04:46:03 +0000 (13:46 +0900)
committerWoochan Lee <wc0917.lee@samsung.com>
Thu, 22 May 2025 04:46:03 +0000 (13:46 +0900)
This reverts commit fbf6ece51256b486508a3ce8fe236c909fccd3e3.

dali/internal/graphics/gles-impl/egl-graphics-controller.cpp

index db8845a773c205673760c66fbc627550b02aa87a..747a0d6cc192d54644d6e1eb39256a4b9928c45b 100644 (file)
@@ -211,7 +211,7 @@ void EglGraphicsController::InitializeGLES(Integration::GlAbstraction& glAbstrac
   GLES::Framebuffer::SetSharedContext(mCurrentContext);
 
   static auto enableShaderUseProgramBinaryString = Dali::EnvironmentVariable::GetEnvironmentVariable(DALI_ENV_SHADER_USE_PROGRAM_BINARY);
-  mUseProgramBinary                              = enableShaderUseProgramBinaryString ? std::atoi(enableShaderUseProgramBinaryString) : false;
+  mUseProgramBinary                              = enableShaderUseProgramBinaryString ? std::atoi(enableShaderUseProgramBinaryString) : true; // change default
 }
 
 void EglGraphicsController::Initialize(Integration::GraphicsSyncAbstraction& syncImplementation,