mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
d41e95fb1a
Summary: changelog: [internal] This diff introduces a mechanism to cache NSTextStorage on Paragraph's state. The old renderer already has caching for NSTextStorage: https://github.com/facebook/react-native/blob/main/Libraries/Text/Text/RCTTextShadowView.m#L21 Fabric will store `NSTextStorage` inside `ParagraphLayoutManager` which is owned by state. There is one notable change which is not gated: Paragraph's state strongly owns `TextLayoutManager`, not `ParagraphShadowNode` like previously. This shouldn't change anything Reviewed By: mdvacca Differential Revision: D43692171 fbshipit-source-id: efe6077222a30ab6d89abd9916534b9a96e745d4
21 lines
548 B
C++
21 lines
548 B
C++
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#include "CoreFeatures.h"
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
bool CoreFeatures::enablePropIteratorSetter = false;
|
|
bool CoreFeatures::enableMapBuffer = false;
|
|
bool CoreFeatures::blockPaintForUseLayoutEffect = false;
|
|
bool CoreFeatures::useNativeState = false;
|
|
bool CoreFeatures::cacheNSTextStorage = false;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|