mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-01-03 15:20:27 +01:00
28 lines
383 B
C
28 lines
383 B
C
#pragma once
|
|
|
|
struct CellFontLibraryConfigFT
|
|
{
|
|
u32 library_addr; //void*
|
|
CellFontMemoryInterface MemoryIF;
|
|
};
|
|
|
|
struct CellFontRendererConfigFT
|
|
{
|
|
struct {
|
|
u32 buffer_addr; //void*
|
|
u32 initSize;
|
|
u32 maxSize;
|
|
u32 expandSize;
|
|
u32 resetSize;
|
|
} BufferingPolicy;
|
|
};
|
|
|
|
struct CCellFontFTInternal
|
|
{
|
|
bool m_bInitialized;
|
|
|
|
CCellFontFTInternal()
|
|
: m_bInitialized(false)
|
|
{
|
|
}
|
|
}; |