Files
react-native/React/Base/RCTConstants.h
T
Valentin Shergin 28e9528c4d Fabric: QE for Preemptive views allocation feature
Summary:
Fabric has a feature that preallocates views before mounting even need them. We never tested the impact of this feature thought. This diff adds a way to enable/disable it and run an experiment.

Changelog: [Internal] Fabric-specific internal change.

Reviewed By: JoshuaGross

Differential Revision: D24355612

fbshipit-source-id: fefd653e57232044cd7b28b160e12a4ef85dbb8b
2020-10-16 17:56:58 -07:00

37 lines
1.3 KiB
Objective-C

/*
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import <React/RCTDefines.h>
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotification;
RCT_EXTERN NSString *const RCTUserInterfaceStyleDidChangeNotificationTraitCollectionKey;
/*
* Allows to enable or disable on-demand view mounting feature of ScrollView.
* It's an experimental feature that improves performance and memory footprint of huge lists inside ScrollView.
*/
RCT_EXTERN BOOL RCTExperimentGetOnDemandViewMounting(void);
RCT_EXTERN void RCTExperimentSetOnDemandViewMounting(BOOL value);
/*
* Allows to some performance flags to report data synchronously right after the mounting transaction finishes.
*/
RCT_EXTERN BOOL RCTExperimentGetSyncPerformanceFlag(void);
RCT_EXTERN void RCTExperimentSetSyncPerformanceFlag(BOOL value);
/*
* It's an experimental feature that improves performance of hit-testing.
*/
RCT_EXTERN BOOL RCTExperimentGetOptimizedHitTesting(void);
RCT_EXTERN void RCTExperimentSetOptimizedHitTesting(BOOL value);
/*
* Preemptive View Allocation
*/
RCT_EXTERN BOOL RCTExperimentGetPreemptiveViewAllocationDisabled(void);
RCT_EXTERN void RCTExperimentSetPreemptiveViewAllocationDisabled(BOOL value);