mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-14 10:48:36 +12:00
28 lines
No EOL
383 B
C
28 lines
No EOL
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)
|
|
{
|
|
}
|
|
}; |