(Build) Ensure default style is installed & remove autoconf file lists
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / third-party / yoga / YGConfig.cpp
1 /**
2  * Copyright (c) 2014-present, Facebook, Inc.
3  *
4  * This source code is licensed under the MIT license found in the
5  * LICENSE file in the root directory of this source tree.
6  */
7
8 #include "YGConfig.h"
9
10 const std::array<bool, YGExperimentalFeatureCount>
11     kYGDefaultExperimentalFeatures = {{false}};
12
13 YGConfig::YGConfig(YGLogger logger)
14     : experimentalFeatures(kYGDefaultExperimentalFeatures),
15       useWebDefaults(false),
16       useLegacyStretchBehaviour(false),
17       shouldDiffLayoutWithoutLegacyStretchBehaviour(false),
18       pointScaleFactor(1.0f), logger(logger), cloneNodeCallback(nullptr),
19       context(nullptr) {}