Xi Ma Chen
Xi Ma Chen
Severity Code Description Project File Line Suppression State Error LNK2038 mismatch detected for 'RuntimeLibrary': value 'MD_DynamicRelease' doesn't match value 'MDd_DynamicDebug' in ipe_core.obj IPE X:\code\ipe\glbinding.lib(Binding_objects_a.obj) 1 I built glbinding with /MD....
Add various unit tests for isolated functionality, especially for the generic data structures.
Use HarfBuzz shaping engine. Explore if current fallback engine is viable as Latin shortcut.
``` for _, v in pairs(argtypes) do local fstring = fstring .. string.format(", %s", v) end ``` should be: ``` for _, v in pairs(argtypes) do fstring = fstring .....