コード例 #1
0
 unsafe public static void YGNodeBaselineInvoke(YogaNode node, float width, float height, IntPtr returnValueAddress)
 {
     (*(float *)returnValueAddress) = YogaNode.BaselineInternal(node, width, height);
 }
コード例 #2
0
 public static extern void YGSetManagedObject(IntPtr ygNode, YogaNode node);
コード例 #3
0
 unsafe public static void YGNodeMeasureInvoke(YogaNode node, float width, YogaMeasureMode widthMode, float height, YogaMeasureMode heightMode, IntPtr returnValueAddress)
 {
     (*(YogaSize *)returnValueAddress) = YogaNode.MeasureInternal(node, width, widthMode, height, heightMode);
 }