1
0
mirror of https://github.com/blawar/GLideN64.git synced 2024-07-07 03:13:49 +00:00

Add FBInfo default ctor.

This commit is contained in:
Sergey Lipskiy 2016-04-23 20:58:29 +06:00
parent 92beef8b35
commit bfba768bee
2 changed files with 8 additions and 0 deletions

View File

@ -12,6 +12,12 @@ namespace FBInfo {
FBInfo fbInfo;
FBInfo::FBInfo()
: m_pWriteBuffer(nullptr)
, m_pReadBuffer(nullptr)
, m_supported(false)
{}
void FBInfo::reset() {
m_supported = false;
m_pWriteBuffer = m_pReadBuffer = nullptr;

View File

@ -31,6 +31,8 @@ namespace FBInfo {
class FBInfo {
public:
FBInfo();
void Write(u32 addr, u32 size);
void WriteList(FrameBufferModifyEntry *plist, u32 size);