[directwrite] Simplify
This commit is contained in:
parent
33e3bf2d79
commit
eaba5e74a9
|
@ -241,17 +241,12 @@ struct hb_directwrite_font_data_t {};
|
||||||
hb_directwrite_font_data_t *
|
hb_directwrite_font_data_t *
|
||||||
_hb_directwrite_shaper_font_data_create (hb_font_t *font)
|
_hb_directwrite_shaper_font_data_create (hb_font_t *font)
|
||||||
{
|
{
|
||||||
hb_directwrite_font_data_t *data = new hb_directwrite_font_data_t;
|
return (hb_directwrite_font_data_t *) HB_SHAPER_DATA_SUCCEEDED;
|
||||||
if (unlikely (!data))
|
|
||||||
return nullptr;
|
|
||||||
|
|
||||||
return data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
_hb_directwrite_shaper_font_data_destroy (hb_directwrite_font_data_t *data)
|
_hb_directwrite_shaper_font_data_destroy (hb_directwrite_font_data_t *data)
|
||||||
{
|
{
|
||||||
delete data;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue