mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-09 16:31:28 +12:00
hle: Add cellFontInitLibraryFreeType function
This commit is contained in:
parent
d873802b9c
commit
0e9313d2df
1 changed files with 7 additions and 0 deletions
|
@ -5,6 +5,12 @@
|
||||||
|
|
||||||
LOG_CHANNEL(cellFontFT);
|
LOG_CHANNEL(cellFontFT);
|
||||||
|
|
||||||
|
s32 cellFontInitLibraryFreeType()
|
||||||
|
{
|
||||||
|
UNIMPLEMENTED_FUNC(cellFontFT);
|
||||||
|
return CELL_OK;
|
||||||
|
}
|
||||||
|
|
||||||
s32 cellFontInitLibraryFreeTypeWithRevision(u64 revisionFlags, vm::ptr<CellFontLibraryConfigFT> config, vm::pptr<CellFontLibrary> lib)
|
s32 cellFontInitLibraryFreeTypeWithRevision(u64 revisionFlags, vm::ptr<CellFontLibraryConfigFT> config, vm::pptr<CellFontLibrary> lib)
|
||||||
{
|
{
|
||||||
cellFontFT.warning("cellFontInitLibraryFreeTypeWithRevision(revisionFlags=0x%llx, config=*0x%x, lib=**0x%x)", revisionFlags, config, lib);
|
cellFontFT.warning("cellFontInitLibraryFreeTypeWithRevision(revisionFlags=0x%llx, config=*0x%x, lib=**0x%x)", revisionFlags, config, lib);
|
||||||
|
@ -202,6 +208,7 @@ s32 FTManager_OpenStreamFace()
|
||||||
|
|
||||||
DECLARE(ppu_module_manager::cellFontFT)("cellFontFT", []()
|
DECLARE(ppu_module_manager::cellFontFT)("cellFontFT", []()
|
||||||
{
|
{
|
||||||
|
REG_FUNC(cellFontFT, cellFontInitLibraryFreeType);
|
||||||
REG_FUNC(cellFontFT, cellFontInitLibraryFreeTypeWithRevision);
|
REG_FUNC(cellFontFT, cellFontInitLibraryFreeTypeWithRevision);
|
||||||
REG_FUNC(cellFontFT, cellFontFTGetRevisionFlags);
|
REG_FUNC(cellFontFT, cellFontFTGetRevisionFlags);
|
||||||
REG_FUNC(cellFontFT, cellFontFTGetInitializedRevisionFlags);
|
REG_FUNC(cellFontFT, cellFontFTGetInitializedRevisionFlags);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue