|
| static void | writeYGValue (YGValue v) |
| |
| EMSCRIPTEN_KEEPALIVE float * | jswrap_YGValueBuffer (void) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetWidth (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetHeight (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetPosition (YGNodeConstRef node, YGEdge edge) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetMargin (YGNodeConstRef node, YGEdge edge) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetPadding (YGNodeConstRef node, YGEdge edge) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetFlexBasis (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetMinWidth (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetMinHeight (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetMaxWidth (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetMaxHeight (YGNodeConstRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeStyleGetGap (YGNodeConstRef node, YGGutter gutter) |
| |
| | EM_JS (float, callMeasureFunc,(YGNodeConstRef nodePtr, float width, int widthMode, float height, int heightMode, int returnWidthOrHeight), { var fn=Module["_yogaMeasureFuncs"].get(nodePtr);if(!fn) return 0;if(!fn._cachedResult||fn._cachedWidth !==width||fn._cachedWidthMode !==widthMode||fn._cachedHeight !==height||fn._cachedHeightMode !==heightMode) { fn._cachedResult=fn(width, widthMode, height, heightMode);fn._cachedWidth=width;fn._cachedWidthMode=widthMode;fn._cachedHeight=height;fn._cachedHeightMode=heightMode;} var result=fn._cachedResult;if(returnWidthOrHeight===0) { var w=result.width;return(w===undefined||w===null) ? NaN :+w;} else { var h=result.height;return(h===undefined||h===null) ? NaN :+h;} }) |
| |
| static YGSize | globalMeasureFunc (YGNodeConstRef nodeRef, float width, YGMeasureMode widthMode, float height, YGMeasureMode heightMode) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeSetMeasureFunc (YGNodeRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeUnsetMeasureFunc (YGNodeRef node) |
| |
| | EM_JS (void, callDirtiedFunc,(YGNodeConstRef nodePtr), { var fn=Module["_yogaDirtiedFuncs"].get(nodePtr);if(fn) fn();}) |
| |
| static void | globalDirtiedFunc (YGNodeConstRef nodeRef) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeSetDirtiedFunc (YGNodeRef node) |
| |
| EMSCRIPTEN_KEEPALIVE void | jswrap_YGNodeUnsetDirtiedFunc (YGNodeRef node) |
| |