FileType order was changed in tvgLoaderMgr.h to move Tvg at the beginning.
When raw data loading [LoaderMgr::loader(data, size)], loaders are tried
one by one (in order according to the FileType enum) until the correct loader
is found.
When using EFL and load edj, multiple loader(data, size) with tvg data may be
called. This change should improve performance in that case.
#include "tvgLoader.h"
-enum class FileType { Svg = 0, Raw, Png, Tvg, Unknown };
+enum class FileType { Tvg = 0, Svg, Raw, Png, Unknown };
struct LoaderMgr
{