rpcsx/rpcs3/Emu/SysCalls/Modules/cellFontFT.h
2015-07-10 04:30:41 +03:00

30 lines
422 B
C++

#pragma once
namespace vm { using namespace ps3; }
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)
{
}
};