mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-20 11:36:13 +00:00
Add FT_Done_Library function
This commit is contained in:
parent
d27c3eee24
commit
df8a0517dc
1 changed files with 7 additions and 0 deletions
|
@ -47,6 +47,12 @@ s32 FT_Done_Glyph()
|
|||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 FT_Done_Library()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cell_FreeType2);
|
||||
return CELL_OK;
|
||||
}
|
||||
|
||||
s32 FT_Get_Char_Index()
|
||||
{
|
||||
UNIMPLEMENTED_FUNC(cell_FreeType2);
|
||||
|
@ -186,6 +192,7 @@ DECLARE(ppu_module_manager::cell_FreeType2)("cell_FreeType2", []()
|
|||
|
||||
REG_FUNC(cell_FreeType2, FT_Done_Face);
|
||||
REG_FUNC(cell_FreeType2, FT_Done_Glyph);
|
||||
REG_FUNC(cell_FreeType2, FT_Done_Library);
|
||||
|
||||
REG_FUNC(cell_FreeType2, FT_Get_Char_Index);
|
||||
REG_FUNC(cell_FreeType2, FT_Get_Glyph);
|
||||
|
|
Loading…
Add table
Reference in a new issue