mirror of
https://github.com/status-im/react-native.git
synced 2025-01-21 14:58:55 +00:00
1d7a24ff0c
Summary: @public inlines some trivial constructors, destructors, and methods. Reviewed By: astreet Differential Revision: D8912691 fbshipit-source-id: 79840ef3322676deebed99391390d6c1796963b5
45 lines
1.1 KiB
C++
45 lines
1.1 KiB
C++
/*
|
|
* Copyright (c) 2014-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the LICENSE
|
|
* file in the root directory of this source tree.
|
|
*
|
|
*/
|
|
#pragma once
|
|
#include "YGFloatOptional.h"
|
|
#include "Yoga-internal.h"
|
|
|
|
struct YGLayout {
|
|
std::array<float, 4> position;
|
|
std::array<float, 2> dimensions;
|
|
std::array<float, 6> margin;
|
|
std::array<float, 6> border;
|
|
std::array<float, 6> padding;
|
|
YGDirection direction;
|
|
|
|
uint32_t computedFlexBasisGeneration;
|
|
YGFloatOptional computedFlexBasis;
|
|
bool hadOverflow;
|
|
|
|
// Instead of recomputing the entire layout every single time, we
|
|
// cache some information to break early when nothing changed
|
|
uint32_t generationCount;
|
|
YGDirection lastOwnerDirection;
|
|
|
|
uint32_t nextCachedMeasurementsIndex;
|
|
std::array<YGCachedMeasurement, YG_MAX_CACHED_RESULT_COUNT>
|
|
cachedMeasurements;
|
|
std::array<float, 2> measuredDimensions;
|
|
|
|
YGCachedMeasurement cachedLayout;
|
|
bool didUseLegacyFlag;
|
|
bool doesLegacyStretchFlagAffectsLayout;
|
|
|
|
YGLayout();
|
|
|
|
bool operator==(YGLayout layout) const;
|
|
bool operator!=(YGLayout layout) const {
|
|
return !(*this == layout);
|
|
}
|
|
};
|