Replace std::string global variables with C-style string. 35/288335/2
authorhuayong.xu <huayong.xu@samsung.com>
Wed, 15 Feb 2023 08:48:39 +0000 (16:48 +0800)
committerhuayong.xu <huayong.xu@samsung.com>
Wed, 15 Feb 2023 08:54:35 +0000 (16:54 +0800)
commitec7280a42dd8ad1ca2a4ea1e8a942c6d66d45491
tree74667f238e8fd5aab98ac2e38b6935b41dadab24
parentd1ece852ca9b3bb35b58919079d05d5c446743af
Replace std::string global variables with C-style string.

A std::string global variable would allocate a memory in heap,
then copy the string from .text section to the heap.
This patch may reduce loading time & memory a little.

Change-Id: I124fc778ab00754bc61d1517a18afcb728904483
dali/internal/graphics/gles-impl/gles-graphics-texture.cpp
dali/internal/graphics/gles/egl-implementation.cpp
dali/internal/graphics/tizen/egl-image-extensions-tizen.cpp
dali/internal/system/common/configuration-manager.cpp
dali/internal/text/text-abstraction/plugin/font-client-utils.cpp
dali/internal/window-system/ubuntu-x11/window-base-ecore-x.cpp
dali/internal/window-system/windows/platform-implement-win.cpp
dali/internal/window-system/x11/window-base-x.cpp