perf(ivy): attempt rendering initial styling only if present (#32979)

PR Close #32979
This commit is contained in:
Pawel Kozlowski
2019-10-03 15:02:10 +02:00
committed by Alex Rickabaugh
parent e6881b5b42
commit 60047037a3
7 changed files with 44 additions and 15 deletions

View File

@ -65,8 +65,11 @@ export const enum TNodeFlags {
/** This bit is set if the node has any "style" inputs */
hasStyleInput = 0b00100000,
/** This bit is set if the node has initial styling */
hasInitialStyling = 0b01000000,
/** This bit is set if the node has been detached by i18n */
isDetached = 0b01000000,
isDetached = 0b10000000,
}
/**