Removing old temporary graphics APIs
[platform/core/uifw/dali-core.git] / dali / internal / event / common / thread-local-storage.cpp
index 077355d..8cac030 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2023 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2024 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -162,22 +162,22 @@ AnimationPlaylist& ThreadLocalStorage::GetAnimationPlaylist()
 
 bool ThreadLocalStorage::IsBlendEquationSupported(DevelBlendEquation::Type blendEquation)
 {
-  return mCore->GetGlAbstraction().IsBlendEquationSupported(blendEquation);
+  return mCore->GetGraphicsConfig().IsBlendEquationSupported(blendEquation);
 }
 
 std::string ThreadLocalStorage::GetShaderVersionPrefix()
 {
-  return mCore->GetGlAbstraction().GetShaderVersionPrefix();
+  return mCore->GetGraphicsConfig().GetShaderVersionPrefix();
 }
 
 std::string ThreadLocalStorage::GetVertexShaderPrefix()
 {
-  return mCore->GetGlAbstraction().GetVertexShaderPrefix();
+  return mCore->GetGraphicsConfig().GetVertexShaderPrefix();
 }
 
 std::string ThreadLocalStorage::GetFragmentShaderPrefix()
 {
-  return mCore->GetGlAbstraction().GetFragmentShaderPrefix();
+  return mCore->GetGraphicsConfig().GetFragmentShaderPrefix();
 }
 
 void ThreadLocalStorage::AddScene(Scene* scene)