mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
VideoCommon: Add custom stride for framedumping.
This commit is contained in:
parent
1ef5ba0c53
commit
0864ef4352
8 changed files with 19 additions and 27 deletions
|
@ -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();
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue