Summary: Using a config flag to switch between different implementations of transferring layout outputs - YogaNodeJNI uses multiple access of java fields to pass all properties like width, height, margin etc... - YogaNodeJNIBatching uses a float array to pass all the data in one java field access Reviewed By: davidaurelio Differential Revision: D14378301 fbshipit-source-id: 0da5b28e6a67ad8fd60eb7efe622d9b2deaf177f
81 lines
2.6 KiB
Java
81 lines
2.6 KiB
Java
/**
|
|
* 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.
|
|
*/
|
|
package com.facebook.yoga;
|
|
|
|
import com.facebook.soloader.SoLoader;
|
|
|
|
public class YogaConfig {
|
|
|
|
public static int SPACING_TYPE = 1;
|
|
public static boolean useBatchingForLayoutOutputs = false;
|
|
|
|
long mNativePointer;
|
|
private YogaLogger mLogger;
|
|
private YogaNodeCloneFunction mYogaNodeCloneFunction;
|
|
|
|
public YogaConfig() {
|
|
mNativePointer = YogaNative.jni_YGConfigNew();
|
|
if (mNativePointer == 0) {
|
|
throw new IllegalStateException("Failed to allocate native memory");
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected void finalize() throws Throwable {
|
|
try {
|
|
YogaNative.jni_YGConfigFree(mNativePointer);
|
|
} finally {
|
|
super.finalize();
|
|
}
|
|
}
|
|
|
|
public void setExperimentalFeatureEnabled(YogaExperimentalFeature feature, boolean enabled) {
|
|
YogaNative.jni_YGConfigSetExperimentalFeatureEnabled(mNativePointer, feature.intValue(), enabled);
|
|
}
|
|
|
|
public void setUseWebDefaults(boolean useWebDefaults) {
|
|
YogaNative.jni_YGConfigSetUseWebDefaults(mNativePointer, useWebDefaults);
|
|
}
|
|
|
|
public void setPrintTreeFlag(boolean enable) {
|
|
YogaNative.jni_YGConfigSetPrintTreeFlag(mNativePointer, enable);
|
|
}
|
|
|
|
public void setPointScaleFactor(float pixelsInPoint) {
|
|
YogaNative.jni_YGConfigSetPointScaleFactor(mNativePointer, pixelsInPoint);
|
|
}
|
|
|
|
/**
|
|
* Yoga previously had an error where containers would take the maximum space possible instead of the minimum
|
|
* like they are supposed to. In practice this resulted in implicit behaviour similar to align-self: stretch;
|
|
* Because this was such a long-standing bug we must allow legacy users to switch back to this behaviour.
|
|
*/
|
|
public void setUseLegacyStretchBehaviour(boolean useLegacyStretchBehaviour) {
|
|
YogaNative.jni_YGConfigSetUseLegacyStretchBehaviour(mNativePointer, useLegacyStretchBehaviour);
|
|
}
|
|
|
|
/**
|
|
* If this flag is set then yoga would diff the layout without legacy flag and would set a bool in
|
|
* YogaNode(mDoesLegacyStretchFlagAffectsLayout) with true if the layouts were different and false
|
|
* if not
|
|
*/
|
|
public void setShouldDiffLayoutWithoutLegacyStretchBehaviour(
|
|
boolean shouldDiffLayoutWithoutLegacyStretchBehaviour) {
|
|
YogaNative.jni_YGConfigSetShouldDiffLayoutWithoutLegacyStretchBehaviour(
|
|
mNativePointer, shouldDiffLayoutWithoutLegacyStretchBehaviour);
|
|
}
|
|
|
|
public void setLogger(YogaLogger logger) {
|
|
mLogger = logger;
|
|
YogaNative.jni_YGConfigSetLogger(mNativePointer, logger);
|
|
}
|
|
|
|
public YogaLogger getLogger() {
|
|
return mLogger;
|
|
}
|
|
}
|