value lime_font_outline_decompose (value fontHandle, value size) { #ifdef LIME_FREETYPE Font *font = (Font*)(intptr_t)val_float (fontHandle); return font->Decompose (val_int (size)); #else return alloc_null (); #endif }
value lime_font_outline_decompose (value fontHandle, int size) { #ifdef LIME_FREETYPE Font *font = (Font*)val_data (fontHandle); return font->Decompose (size); #else return alloc_null (); #endif }