Ejemplo n.º 1
0
        private YogaConfig(YGConfigHandle ygConfig)
        {
            _ygConfig = ygConfig;
            if (_ygConfig.IsInvalid)
            {
                throw new InvalidOperationException("Failed to allocate native memory");
            }

            _ygConfig.SetContext(this);

            if (_ygConfig == YGConfigHandle.Default)
            {
                _managedLogger = LoggerInternal;
            }
        }
Ejemplo n.º 2
0
        private YogaConfig(YGConfigHandle ygConfig)
        {
            _ygConfig = ygConfig;
            if (_ygConfig.IsInvalid)
            {
                throw new InvalidOperationException("Failed to allocate native memory");
            }

            _ygConfig.SetContext(this);

            if (_ygConfig == YGConfigHandle.Default)
            {
                _managedLogger = LoggerInternal;
#if (!UNITY_WEBGL && !UNITY_ANDROID) || UNITY_EDITOR
                Native.YGInteropSetLogger(_managedLogger);
#endif
            }
        }
Ejemplo n.º 3
0
        private static void LoggerInternal(
            IntPtr unmanagedConfigPtr,
            IntPtr unmanagedNodePtr,
            YogaLogLevel level,
            string message)
        {
            var config = YGConfigHandle.GetManaged(unmanagedConfigPtr);

            if (config == null || config._logger == null)
            {
                // Default logger
                System.Diagnostics.Debug.WriteLine(message);
            }
            else
            {
                var node = YGNodeHandle.GetManaged(unmanagedNodePtr);
                config._logger(config, node, level, message);
            }

            if (level == YogaLogLevel.Error || level == YogaLogLevel.Fatal)
            {
                throw new InvalidOperationException(message);
            }
        }
Ejemplo n.º 4
0
 public static extern bool YGConfigIsExperimentalFeatureEnabled(
     YGConfigHandle config,
     YogaExperimentalFeature feature);
Ejemplo n.º 5
0
 public static extern void YGConfigSetExperimentalFeatureEnabled(
     YGConfigHandle config,
     YogaExperimentalFeature feature,
     bool enabled);
Ejemplo n.º 6
0
 public static extern YGNodeHandle YGNodeNewWithConfig(YGConfigHandle config);
Ejemplo n.º 7
0
 public static extern void YGConfigSetPointScaleFactor(
     YGConfigHandle config,
     float pixelsInPoint);
Ejemplo n.º 8
0
 public static extern bool YGConfigGetUseWebDefaults(YGConfigHandle config);
Ejemplo n.º 9
0
 public static extern void YGConfigSetUseWebDefaults(
     YGConfigHandle config,
     bool useWebDefaults);
Ejemplo n.º 10
0
Archivo: Native.cs Proyecto: zbwbb/yoga
 public static extern bool YGConfigGetUseLegacyStretchBehaviour(YGConfigHandle config);
Ejemplo n.º 11
0
Archivo: Native.cs Proyecto: zbwbb/yoga
 public static extern void YGConfigSetUseLegacyStretchBehaviour(
     YGConfigHandle config,
     bool useLegacyStretchBehavior);