VideoCommon: Mark framedump variables as private.

And rename them to the new naming scheme.
This commit is contained in:
degasus
2016-10-07 21:39:23 +02:00
parent e82cf46436
commit 8c999f9ee8
2 changed files with 24 additions and 23 deletions

View File

@ -156,13 +156,6 @@ protected:
static std::mutex s_criticalScreenshot;
static std::string s_sScreenshotName;
std::vector<u8> frame_data;
bool bAVIDumping = false;
bool bLastFrameDumped = false;
int m_last_framedump_width = 0;
int m_last_framedump_height = 0;
AVIDump::DumpFormat m_last_framedump_format;
// The framebuffer size
static int s_target_width;
static int s_target_height;
@ -194,6 +187,14 @@ private:
static unsigned int efb_scale_numeratorY;
static unsigned int efb_scale_denominatorX;
static unsigned int efb_scale_denominatorY;
// framedumping
std::vector<u8> m_frame_data;
bool m_AVI_dumping = false;
bool m_last_frame_dumped = false;
int m_last_framedump_width = 0;
int m_last_framedump_height = 0;
AVIDump::DumpFormat m_last_framedump_format;
};
extern std::unique_ptr<Renderer> g_renderer;