Revert "[Tizen] Enable shaderFileCaching in InitializeGLES"
authorSeungho Baek <sbsh.baek@samsung.com>
Tue, 10 Jun 2025 11:11:04 +0000 (20:11 +0900)
committerSeungho Baek <sbsh.baek@samsung.com>
Tue, 10 Jun 2025 11:11:04 +0000 (20:11 +0900)
This reverts commit 0719fe42e02977ba52f5caae08160fa1210dbfed.

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

index 747a0d6cc192d54644d6e1eb39256a4b9928c45b..db8845a773c205673760c66fbc627550b02aa87a 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) : true; // change default
+  mUseProgramBinary                              = enableShaderUseProgramBinaryString ? std::atoi(enableShaderUseProgramBinaryString) : false;
 }
 
 void EglGraphicsController::Initialize(Integration::GraphicsSyncAbstraction& syncImplementation,