A copy of hb_icu_script_to_script to avoid direct ICU dependency.
| 130 | |
| 131 | // A copy of hb_icu_script_to_script to avoid direct ICU dependency. |
| 132 | hb_script_t ICUScriptToHarfbuzzScript(UScriptCode script) |
| 133 | { |
| 134 | if (script == USCRIPT_INVALID_CODE) |
| 135 | return HB_SCRIPT_INVALID; |
| 136 | return hb_script_from_string(uscript_getShortName(script), -1); |
| 137 | } |
| 138 | |
| 139 | void GetSingleTextLineRuns(TextSegments & segments) |
| 140 | { |
no outgoing calls
no test coverage detected