mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-28 10:51:06 +00:00
Add sceLibFttt
Same as sceFont
This commit is contained in:
parent
3c19eda851
commit
9f4efaf142
@ -329,6 +329,6 @@ void RegisterAllModules() {
|
||||
Register_sceDisplay_driver();
|
||||
Register_sceMpegbase();
|
||||
Register_sceUsbGps();
|
||||
|
||||
Register_sceLibFttt();
|
||||
}
|
||||
|
||||
|
@ -1391,7 +1391,41 @@ const HLEFunction sceLibFont[] = {
|
||||
{0x02d7f94b, WrapI_U<sceFontFlush>, "sceFontFlush"},
|
||||
};
|
||||
|
||||
const HLEFunction sceLibFttt[] = {
|
||||
{0x67f17ed7, WrapU_UU<sceFontNewLib>, "sceFontNewLib"},
|
||||
{0x574b6fbc, WrapI_U<sceFontDoneLib>, "sceFontDoneLib"},
|
||||
{0x48293280, WrapI_UFF<sceFontSetResolution>, "sceFontSetResolution"},
|
||||
{0x27f6e642, WrapI_UU<sceFontGetNumFontList>, "sceFontGetNumFontList"},
|
||||
{0xbc75d85b, WrapI_UUI<sceFontGetFontList>, "sceFontGetFontList"},
|
||||
{0x099ef33c, WrapI_UUU<sceFontFindOptimumFont>, "sceFontFindOptimumFont"},
|
||||
{0x681e61a7, WrapI_UUU<sceFontFindFont>, "sceFontFindFont"},
|
||||
{0x2f67356a, WrapI_V<sceFontCalcMemorySize>, "sceFontCalcMemorySize"},
|
||||
{0x5333322d, WrapI_UUU<sceFontGetFontInfoByIndexNumber>, "sceFontGetFontInfoByIndexNumber"},
|
||||
{0xa834319d, WrapU_UUUU<sceFontOpen>, "sceFontOpen"},
|
||||
{0x57fcb733, WrapU_UCUU<sceFontOpenUserFile>, "sceFontOpenUserFile"},
|
||||
{0xbb8e7fe6, WrapU_UUUU<sceFontOpenUserMemory>, "sceFontOpenUserMemory"},
|
||||
{0x3aea8cb6, WrapI_U<sceFontClose>, "sceFontClose"},
|
||||
{0x0da7535e, WrapI_UU<sceFontGetFontInfo>, "sceFontGetFontInfo"},
|
||||
{0xdcc80c2f, WrapI_UUU<sceFontGetCharInfo>, "sceFontGetCharInfo" },
|
||||
{0xaa3de7b5, WrapI_UUU<sceFontGetShadowInfo>, "sceFontGetShadowInfo"},
|
||||
{0x5c3e4a9e, WrapI_UUU<sceFontGetCharImageRect>, "sceFontGetCharImageRect"},
|
||||
{0x48b06520, WrapI_UUU<sceFontGetShadowImageRect>, "sceFontGetShadowImageRect"},
|
||||
{0x980f4895, WrapI_UUU<sceFontGetCharGlyphImage>, "sceFontGetCharGlyphImage"},
|
||||
{0xca1e6945, WrapI_UUUIIII<sceFontGetCharGlyphImage_Clip>, "sceFontGetCharGlyphImage_Clip"},
|
||||
{0x74b21701, WrapF_IFU<sceFontPixelToPointH>, "sceFontPixelToPointH"},
|
||||
{0xf8f0752e, WrapF_IFU<sceFontPixelToPointV>, "sceFontPixelToPointV"},
|
||||
{0x472694cd, WrapF_IFU<sceFontPointToPixelH>, "sceFontPointToPixelH"},
|
||||
{0x3c4b7e82, WrapF_IFU<sceFontPointToPixelV>, "sceFontPointToPixelV"},
|
||||
{0xee232411, WrapI_UU<sceFontSetAltCharacterCode>, "sceFontSetAltCharacterCode"},
|
||||
{0x568be516, WrapI_UUU<sceFontGetShadowGlyphImage>, "sceFontGetShadowGlyphImage"},
|
||||
{0x5dcf6858, WrapI_UUUIIII<sceFontGetShadowGlyphImage_Clip>, "sceFontGetShadowGlyphImage_Clip"},
|
||||
{0x02d7f94b, WrapI_U<sceFontFlush>, "sceFontFlush"},
|
||||
};
|
||||
|
||||
void Register_sceFont() {
|
||||
RegisterModule("sceLibFont", ARRAY_SIZE(sceLibFont), sceLibFont);
|
||||
}
|
||||
|
||||
void Register_sceLibFttt() {
|
||||
RegisterModule("sceLibFttt", ARRAY_SIZE(sceLibFttt), sceLibFttt);
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
class PointerWrap;
|
||||
|
||||
void Register_sceFont();
|
||||
void Register_sceLibFttt();
|
||||
|
||||
void __FontInit();
|
||||
void __FontShutdown();
|
||||
|
Loading…
Reference in New Issue
Block a user