mirror of
https://github.com/TwilitRealm/dusklight
synced 2026-08-26 06:52:40 -04:00
Merge remote-tracking branch 'origin/main' into 26-07-25-audio-replacements
# Conflicts: # CMakeLists.txt
This commit is contained in:
@@ -55,12 +55,16 @@ public:
|
||||
void prepend(JUTCacheFont::TGlyphCacheInfo*);
|
||||
|
||||
virtual ~JUTCacheFont();
|
||||
#if TARGET_PC
|
||||
virtual void loadImage(int, GXTexMapID FONT_DRAW_CTX);
|
||||
#else
|
||||
virtual void loadImage(int, GXTexMapID);
|
||||
#endif
|
||||
virtual void setBlock();
|
||||
|
||||
void setPagingType(EPagingType type) { mPagingType = type; }
|
||||
|
||||
static u32 calcCacheSize(u32 param_0, int param_1) { return (ALIGN_NEXT(param_0, 0x20) + 0x40) * param_1; }
|
||||
static u32 calcCacheSize(u32 param_0, int param_1) { return (ALIGN_NEXT(param_0, 0x20) + sizeof(TCachePage)) * param_1; }
|
||||
TGXTexObj* getTexObj(void* buffer) const { return &((TCachePage*)buffer)->mTexObj; }
|
||||
void delete_and_initialize() { deleteMemBlocks_CacheFont(); initialize_state(); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user