mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
VideoCommon: Add custom stride for framedumping.
This commit is contained in:
@ -12,7 +12,7 @@ private:
|
||||
static bool CreateFile();
|
||||
static void CloseFile();
|
||||
static void CheckResolution(int width, int height);
|
||||
static void StoreFrameData(const u8* data, int width, int height);
|
||||
static void StoreFrameData(const u8* data, int width, int height, int stride);
|
||||
|
||||
public:
|
||||
enum class DumpFormat
|
||||
@ -22,7 +22,7 @@ public:
|
||||
};
|
||||
|
||||
static bool Start(int w, int h, DumpFormat format);
|
||||
static void AddFrame(const u8* data, int width, int height);
|
||||
static void AddFrame(const u8* data, int width, int height, int stride);
|
||||
static void Stop();
|
||||
static void DoState();
|
||||
};
|
||||
|
Reference in New Issue
Block a user